Data Replication with SQL Remote
PART 4. Reference
CHAPTER 18. 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