vote up 0 vote down star

We have several stored procedures marked as articles for replication in our SQL2000 database. If we update any of them via ALTER PROCEDURE, the changes are applied to the master, but never published to subscribers. Am I missing a setting, or does SQL require a complete reinitialization/snapshot to move the changes out?

flag

1 Answer

vote up 1 vote down check

Here are two ways to update the stored procedure on master and subscribers

  • Drop the stored procedure, and recreate it
  • Use the sp_addscriptexec stored procedure to replicate then execute a script containing the alter procedure command on the master and all subscribers

Source: http://www.replicationanswers.com/General.asp

link|flag
Thanks, to be clear, it advises to drop the replication article for the procedure, not the procedure itself (attempting a drop on a replicated procedure will fail) – Thomas H Oct 30 at 16:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.