Call (800) 766-1884 for Oracle support & training
Free Oracle Tips


Oracle Consulting Support
Oracle Upgrades
Use New Oracle Features
Oracle Replication Support
Oracle Training
Remote Oracle DBA
System Documentation
Oracle Tips
Oracle Performance
 

Free Oracle Tips


 

HTML Text

BC Oracle tuning

Oracle training

Oracle support

Remote Oracle

 

 

   
  Oracle Tips by Burleson

Oracle Streams
Chapter 4 - Capture and Propagate Configuration

Using add_table_propagation_rules

There is another useful SQL query that can be used to view the propagation details including the bytes transferred etc. v$propagation_sender displays information about buffer queue propagation schedules on the source side. Columns such as TOTAL_MSGS, TOTAL_BYTES, and HIGH_WATER_MARK are helpful in showing the progress and load on the Propagation process. The following SQL block queries the v$propagation_sender view.

-- to see the bytes transferred etc
SELECT p.PROPAGATION_NAME,
  s.QUEUE_NAME,
  s.DBLINK,
  s.TOTAL_MSGS,
  s.TOTAL_BYTES
  FROM DBA_PROPAGATION p, V$PROPAGATION_SENDER s
  SEE CODE DEPOT FOR FULL SCRIPT
/

The above SQL statement gives the following sample output:

                 Queue      Database        Total    Total
Propagation      Name       Link            Events   Bytes
---------------- -------------------------- -------- --------------
NY1_PROPAGATE    NY1_QUEUE  DNYOIP20.WORLD  50,077   56,696,005


The above text is an excerpt from:

Oracle Streams
High Speed Replication and Data Sharing

ISBN 0-9745993-5-2

by Madhu Tumma
 


Download your Oracle scripts now:

www.oracle-script.com

The definitive Oracle Script collection for every Oracle professional DBA

  
 

Oracle performance tuning software 
 
 
 
 

Oracle performance tuning book

 

 
 
 
Oracle performance Tuning 10g reference poster
 
 
 
Oracle training in Linux commands
 
Oracle training Excel
 
Oracle training & performance tuning books
 

 

   

Copyright © 1996 -  2011 by Burleson Enterprises. All rights reserved.

Oracle® is the registered trademark of Oracle Corporation.