How to check which tables are marked for replication in Sybase ASE
Sybase ASE 0
(0)
Below are the ways to know the list of tables which are marked for replication in Sybase ASE.
- using sp_setreptable procedure
1> use DB
2> go
1> sp_setreptable
2> go

2. using below sql query
select object_name(id) as Name from sysobjects where type = "U" and (sysstat & -32768) = -32768
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.