You are on page 1of 1

1.Pre-requisites.

Kindly validate below:

-> Supplemental logging in Source Tables.

select * from dba_log_groups where table_name='EGO_MTL_SY_ITEMS_EXT_B' and owner='EGO'

 SELECT access for source table:

select * from dba_tab_privs where owner='XXREF_CG1_O' and table_name='EGO_MTL_SY_ITEMS_EXT_B'


and grantee='GGADM'

-> DML Grant Privs on Target

select * from dba_tab_privs where owner='XXREF_CG1_O' and table_name='EGO_MTL_SY_ITEMS_EXT_B'


and grantee='GGADM'

-> Whether all target Table in destination have GG-ENQUEUE and GG-DEQUEUE time

Select * from dba_tab_columns where owner='COMUSER' and table_name='COM_ORDER_LINE_GROUP'


and column_name in('GG_ENQUEUE_TIME','GG_DEQUEUE_TIME');

->Whether GG setup exisits in all Source dbs.

SELECT * FROM GG_TABLE_INFO WHERE DB_NAME='' AND SRC_SCHEMA=' ' AND SRC_TABLE='' AND
PROC_NAME=' '

You might also like