Query to check autocorrection property on RSSD
Sybase Replication Sybase autocorrection 0
(0)
Login to RSSD Dataserver and run below command
1>use SYB_RSSD
2>go
3>SELECT obj.objname AS RepDef
, db.dsname replicate_dataserver
, db.dbname replicate_database
, 'Yes' AS AutoCorrectionEnabled
FROM rs_repobjs repobj
JOIN rs_objects obj ON ((repobj.attributes & 0x1) = 0x1 AND obj.objid = repobj.objid)
JOIN rs_databases db ON (db.dbid = repobj.dbid)
4>go
How useful was this post?
Click on a star to rate it!
Average rating 0 / 5. Vote count: 0
No votes so far! Be the first to rate this post.