Replicate DDL.
% isql -Usa -P -Ssunak1502i use pubs2 go create table t1 (a char(10), b integer, c text) go
create unique clustered index t1_idx1 on t1 (a,b) go
% isql -Usa -P -Ssunak1505i use pubs2 go
resume connection to rds.rdb go
resume connection to rds.rdb skip transaction go
See the Replication Server Reference Manual > Replication Server Commands > resume connection for other available resume connection options.
“Message from server: Message: 2762, State 3, Severity 16 - 'The 'CREATE TABLE' command is not allowed within a multi-statement transaction in the 'pubs2 database.”Ensure that the Replication Agent has been configured to send warm standby transactions and that the RepAgent has been stopped and restarted since the last time when the RepAgent configuration parameter was changed.
grant all on t1 to pubs2_maint go