Multi-master replication and cleaning the push queue!
who could help me with the following issue:
I need to clean replication push queue and I have a following problem:
how I can locate "transactions" related to a certain table and to a certain site and later remove those.
How does this sound? What else I need to consider?
spool c:\delete_transactions.sql select 'exec dbms_defer_sys.DELETE_TRAN(''' || a.deferred_tran_id ||''','''||a.dblink || ''');' from deftrandest a, defcall b where a.deferred_tran_id=b.deferred_tran_id and a.dblink='SITE_TO_BE_PUSHED' and packagename='PUSHED_TABLE$RP' ORDER BY DELIVERY_ORDER; spool off Any comments more than welcome!