youwish to include only some of the columns of the table in a publication
youmust first run sp_add_article and then call sp_add_article_col.
Aswith other data definition changes, in a production environment this
procedureshould only be run on a quiet SQL Remote installation.
Formore information on the requirements for a quiet system, see
“Makingschema changes” on page 275.
Example Thefollowing statement adds the SalesRep table to a publication named
SalesRepData:
sp_add_article ’SalesRepData’, ’SalesRep’
go
382