November 2006
Intermediate to advanced
1232 pages
34h 10m
English
The following is an example that shows the creation of the publication shown above using SQL statements, rather than the wizard.
The following stored procedures are used:
sp_replicationdboption sets database options for replication.
sp_addpublication creates and configures the publication.
sp_addpublication_shapshot creates the snapshot agent.
sp_addarticle will add the various articles to the publication.
The example is shown here:
use [AdventureWorks] exec sp_replicationdboption @dbname = N'AdventureWorks', @optname = N'publish', @value = N'true' GO use [AdventureWorks] exec sp_addpublication @publication = N'AWPub', @description = N'Transactional publication of database' 'AdventureWorks' 'from Publisher' ...
Read now
Unlock full access