We currently have merge replication set up to merge certain tables between two databases. I need to programmatically start one of the publications to make sure data has been synchronized prior to starting a certain job. SQL Server Books Online has not been too helpful.

So far, the only thing I have come up with is to use sp_start_job to start the merge replication sql job. Is it ok to do this?

Are there any other ways to programmatically start synchronizing a publication?

link|improve this question

Are you using Push or Pull for your replication? Also, when you say "Programatically" are you looking to write a .Net program that kicks it off? – Refracted Paladin Feb 2 '10 at 18:38
Push replication. And it would be an ASP.NET application that would kick it off. – Jeff Widmer Feb 3 '10 at 10:09
feedback

1 Answer

up vote 2 down vote accepted

We ended up using the sp_start_job with the name of the merge replication publication. The only downside that we found was that the name of the sql job is dynamically generated when the publication is created so if the publication is drop and recreated, then the name will change. Other than that using sp_start_job has worked beautifully.

Couple other things:

  • The sql user was added to SQLAgentOperatorRole to allow the call to sp_start_job
  • sp_help_job was used to indicate if the job completed successfully before proceeding
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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