Subscribe to Posts by Email

Subscriber Count

    696

Disclaimer

All information is offered in good faith and in the hope that it may be of use for educational purpose and for Database community purpose, but is not guaranteed to be correct, up to date or suitable for any particular purpose. db.geeksinsight.com accepts no liability in respect of this information or its use. This site is independent of and does not represent Oracle Corporation in any way. Oracle does not officially sponsor, approve, or endorse this site or its content and if notify any such I am happy to remove. Product and company names mentioned in this website may be the trademarks of their respective owners and published here for informational purpose only. This is my personal blog. The views expressed on these pages are mine and learnt from other blogs and bloggers and to enhance and support the DBA community and this web blog does not represent the thoughts, intentions, plans or strategies of my current employer nor the Oracle and its affiliates or any other companies. And this website does not offer or take profit for providing these content and this is purely non-profit and for educational purpose only. If you see any issues with Content and copy write issues, I am happy to remove if you notify me. Contact Geek DBA Team, via geeksinsights@gmail.com

Pages

Example 3 : Configure the Extract / Replicat for Initial Load

In this example, we create the table on source side called myobj from dba_objects and need to create a initial load using one time process.

On Source Steps On Target  Steps
Configure Extract Process cd /data/ggate

./ggsci

ADD EXTRACT ext1, SOURCEISTABLE

EDIT PARAMS ext1

### Copy following to the extract param file ###

EXTRACT ext1

USERID ggs_owner, PASSWORD ggs_owner

RMTHOST 192.168.56.109, MGRPORT 7809

RMTTASK replicat, GROUP rep1

TABLE test.myobj;

Configure Replicat Process cd /data/ggate

./ggsci

ADD replicat rep1, specialrun

EDIT PARAMS rep1

### Copy following to the extract param file###

REPLICAT rep1

USERID ggs_owner, PASSWORD ggs_owner

ASSUMETARGETDEFS

MAP test.myobj, TARGET test.myobj;

Start Extract Process ./ggsci

start extract ext1

info all

Start Replicat Process ./ggsci

start replicat rep1

info all

Check the Data select count(*) from test.myobj; Check the Data select count(*) from test.myobj;
View Report  ./ggsci

info extract ext1, detail

 View Report  ./ggsci

info replicat rep1, detail