sql server replication:
I am using trasactional push replication on 2005.
So, first I do this:
EXEC sp_addarticle
@publication = N'azDSS', -- Change value with the name of the
publication we wish to add to
@article = N'tbPhxSrvrpf', -- Change value with the name of the
article we are adding
@source_owner = N'ICOMS', -- Change value with the correct schema
name
@source_object = N'tbPhxSrvrpf', -- Change value to the name of the
table
@destination_table = N'tbPhxSrvrpf', -- Change value to the name of
the table
@type = N'logbased',
@creation_script = N'',
@description = null,
@pre_creation_cmd = N'truncate',
@schema_option = 0x000000000807509F,
@status = 16,
@vertical_partition = N'false',
@ins_cmd = N'CALL [sp_MSins_tbPhxSrvrpf]', -- Update the section
between the {} (and removed the {})
@del_cmd = N'CALL [sp_MSdel_tbPhxSrvrpf]', -- Update the section
between the {} (and removed the {})
@upd_cmd = N'SCALL [sp_MSupd_tbPhxSrvrpf]', -- Update the section
between the {} (and removed the {})
@filter = null,
@sync_object = null
GO
Then I do this:
exec sp_addsubscription
@publication = N'azDSS', -- Change value with the name of the
publication
@article = N'tbPhxSrvrpf', -- Change value with the name of the
article
@subscriber = N'CARZ0DB13\ARZSQL13', -- Change value with the name
of the subscribing server
@destination_db = N'azDSS', -- Change value with the name of the
subscribing db
@sync_type = N'automatic',
@update_mode = N'read only'
GO
and what I get is:
Msg 14100, Level 16, State 1, Procedure sp_MSrepl_addsubscription, Line
533
Specify all articles when subscribing to a publication using concurrent
snapshot processing.
Is there a work around for this. I need to be able to add an article
to an existing publication without snapshoting the entire thing