Hi there,I am working with replication in sql 2012 in local machie that was set up by others and want to disable
replication from ssms wizard but getting following error:-
Invalid object name 'dbo.syssubscriptions'.
Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 0, current count = 1.
Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 0, current count = 1.
Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 0, current count = 1.
Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 0, current count = 1.
Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 0, current count = 1.
Changed database context to 'master'. (.Net SqlClient Data Provider)
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&ProdVer=11.00.3000&EvtSrc=MSSQLServer&EvtID=208&LinkId=20476
------------------------------
Server Name: WIN23
Error Number: 208
Severity: 16
State: 1
Procedure: sp_MSrepl_dropsubscription
Line Number: 103
------------------------------
Program Location:
at Microsoft.SqlServer.Management.Common.ConnectionManager.ExecuteTSql(ExecuteTSqlAction action, Object execObject, DataSet fillDataSet, Boolean catchException)
at Microsoft.SqlServer.Management.Common.ServerConnection.ExecuteNonQuery(String sqlCommand, ExecutionTypes executionType)
______________________________________________________________________________________________
I did check that somehow my both publication and subscription are not available under local publication and local subscription nodes in ssms respectively. Distribution database has also got deleted.and when I tried to drop database 'DB1' which is publisher
db it is not allowing me to drop it as it is configured for replication.
I am not aware which database is acting as a subscriber database.
how to find out the name of subscriber database from catalog views and also how to forcefully clear my replication.
Thanx in advance
srm_2010