rasu90 (AT) yahoo (DOT) com (Raj) writes:
Quote:
Can someone tell me ways of determining whether a table is marked for
replication? |
Connect to the database used by the replication server and say
something like
select o.phys_tablename,
to_database.dsname,
to_database.dbname
from rs_objects o,
rs_databases from_database,
rs_subscriptions s,
rs_databases to_database
where o.dbid = from_database.dbid
and o.objid = s.objid
and s.dbid = to_database.dbid
and from_database.dsname = 'MY_SERVER'
and from_database.dbname = 'my_database'
This will tell you all the tables in my_database that have replication
subscriptions and where they're being replicated to.
--
Ed Avis <ed (AT) membled (DOT) com>