Displays the replication definitions that exist only to define primary key columns, and quoted table or column names.
create replication definition authors with primary at NY_DS.pdb1 (au_id varchar(11), au_lname varchar(40) , au_fname varchar(20) , phone char(12), address varchar(40), city varchar(20), state char(2), zip char(5), contract bit) primary key (au_id)
create replication definition titleauthor with primary at NY_DS.pdb1 (au_id varchar(11) as author, title_id varchar(6) as title, au_ord tinyint, royaltyper int) primary key (au_id, title_id)
Replication Definition Name --------------------------- authors (1 row affected) (return status = 0)
If you do not enter any text for replication_definition, rs_helpcheckrepdef lists all replication definitions that exist only to define primary keys, and quoted table or column names.
If you enter any text for replication_definition, rs_helpcheckrepdef lists all replication definitions with names that start with the text you entered for replication_definition, and that exist only to define primary keys, and quoted table or column names.