Hi ,
Does anyone know that how to re-generate a scall style transcriptional replication customer update proc ?
For example i want to re-generate a customer update proc:
-- get article id
select artid,name,upd_cmd from dbo.sysarticles
where name='xmltest'
--artidnameupd_cmd
--11xmltest
SCALL [sp_MSupd_dboxmltest]
-- try re-generate customer update proc
exec sp_scriptmappedupdproc 11
-- try re-generate customer update proc
exec sp_scriptdynamicupdproc '11'
-- and all get errors below:
/*
Msg 14156, Level 16, State 1, Procedure sp_scriptupdproccore, Line 217
The custom stored procedure calling the format for the update command specified in the article definition does not match the MCALL format.
*/
Many thanks.