Replicate DDL in a warm standby environment.
% isql -Usa -P -Ssunak1505i use pubs2 go create table t1 (a integer, b char(10), c datetime)) go
create unique clustered index t1_idx1 on t1 (a,b) go
% isql -Usa -P -Swingak1505i 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 options for the resume connection command.
grant all on t1 to pubs2_maint go