SQL Remote User's Guide
Command Reference for Adaptive Server Enterprise
To create a publication.
sp_create_publication publication_name
Argument | Description |
---|---|
publication_name | The name of the publication |
Running sp_create_publication creates a publication, but one with no content. Once the publication is created, you must add articles to it using the sp_add_remote_table procedure and the sp_add_article procedure.
The following statement creates a publication named SalesRepData:
sp_create_publication 'SalesRepData' go