Use sp_reptostandby or sp_setreptable to replicate tables in the active database.
The database is enabled for both SQL statement replication (available in Adaptive Server 15.0.3 and later) and non-SQL statement replication.
In this example, we have used sp_reptostandby to mark the database for replication.
% isql -Usa -P -Ssunak1505i use pubs2 go
sp_reptostandby pubs2,'all' go The replication mode for database 'pubs2' has been set to 'ALL'. (return status = 0)
sp_setrepdbmode pubs2,'UDIS','on' go The replication mode for database 'pubs2' is 'udis'. (return status = 0)
sp_setrepdbmode pubs2,'threshold','10' go The replication threshold for 'pubs2' is '10'. (return status = 0)
sp_setrepdefmode t1,'threshold','10'