Stefan Rosenthal
2006-02-22 19:48:05 UTC
After Removing Merge Replication on SQL2005 (Publisher) I wasn't able to
rename Tables, Columns...
(Error: ... is used by replication) ... I applied Scripts found here (Thx!)
... no success
Digging deeper into the problem I found out that there is a flag in the
system view sys.tables called "is_merge_published" which has a orphaned
boolean 1 for each table which had been replicated.
But in SQL2005 I found no way to change system catalogs (I know there is a
hidden Ressource DB...)! Simple T-SQL does not work (tried update sys.tables
set is_merge_published=0)
How can I update the system view?
Thx for any hints!!!
Stefan Rosenthal
rename Tables, Columns...
(Error: ... is used by replication) ... I applied Scripts found here (Thx!)
... no success
Digging deeper into the problem I found out that there is a flag in the
system view sys.tables called "is_merge_published" which has a orphaned
boolean 1 for each table which had been replicated.
But in SQL2005 I found no way to change system catalogs (I know there is a
hidden Ressource DB...)! Simple T-SQL does not work (tried update sys.tables
set is_merge_published=0)
How can I update the system view?
Thx for any hints!!!
Stefan Rosenthal