Facing issue while disabling the immediate_sync in sql server 2008R2
Below the query which i ran to find out the publication and immediate sync status
select immediate_sync,publication from distribution.dbo.MSpublications
1 MPI_SIM
select immediate_sync, name from syspublications
1 MPI_SIM
But while disabling the immediate sync by the below error i am facing this issue.
EXEC sp_changepublication
@publication = 'MPI_SIM',
@property = 'immediate_sync',
@value = 'false'
GO
Msg 20026, Level 11, State 1, Procedure sp_MSrepl_changepublication, Line 222
The publication 'MPI_SIM' does not exist.
Kindly help me out.
Thanks in Advance.