Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1.  
  2. USE Governanca_GP
  3.  
  4. EXEC sp_changepublication
  5. @publication = 'GOVERNANCA_PUBLISH',
  6. @property = N'allow_anonymous',
  7. @value = 'False'
  8.  
  9. GO
  10.  
  11. EXEC sp_changepublication
  12. @publication = 'GOVERNANCA_PUBLISH',
  13. @property = N'immediate_sync',
  14. @value = 'False'
  15.  
  16. GO
  17.  
  18.  
  19. USE Governanca_GP
  20.  
  21. EXEC sp_addarticle
  22. @publication = 'GOVERNANCA_PUBLISH',
  23. @article = 'TbStatusExcel',
  24. @source_object = 'TbStatusExcel'
  25.  
  26.  
  27. USE Governanca_GP
  28. EXEC sp_addarticle
  29. @publication = 'GOVERNANCA_PUBLISH',
  30. @article = 'TbRelatorioExcel',
  31. @source_object = 'TbRelatorioExcel'
  32.  
  33.  
  34.  
  35. TbRelatorioExcel
  36.  
  37. EXEC sp_addsubscription
  38. @publication = 'GOVERNANCA_PUBLISH',
  39. @subscriber = 'EC2AMAZ-T56C169',
  40. @destination_db = 'GOVERNANCA_GP_READREPLICA'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement