Showing posts with label disabled. Show all posts
Showing posts with label disabled. Show all posts

Tuesday, March 27, 2012

Delete an old subscription from the subscriber?

The publisher has been disabled. But on the subscriber, I'm unable to delete
the subscription. It was a merge.
I tried to use sp_dropmergesubscription, but I've been unable to find a good
syntax example. And from which place do I run it?
Thanks in advance for any help.
Leah
If this is SQL 2000 use the following script.
http://groups.google.com/group/micro...d?dmode=source
Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
"Leah" <tech@.kaplooey.com> wrote in message
news:O9LBJo2GGHA.2444@.TK2MSFTNGP11.phx.gbl...
> The publisher has been disabled. But on the subscriber, I'm unable to
> delete the subscription. It was a merge.
> I tried to use sp_dropmergesubscription, but I've been unable to find a
> good syntax example. And from which place do I run it?
>
> Thanks in advance for any help.
>
> Leah
>
|||I ran the script in both places. didn't get rifd of the subscription. In the
meantime, I'm trying to re-establish merge replication, and now I get the
cant find sp_MSupdate_replication_status in the master table. Where is this
script located, so I can reinstall it?
Thanks for your help.
Leah
"Hilary Cotter" <hilary.cotter@.gmail.com> wrote in message
news:OQn9ot3GGHA.3728@.tk2msftngp13.phx.gbl...
> If this is SQL 2000 use the following script.
> http://groups.google.com/group/micro...d?dmode=source
> --
> Hilary Cotter
> Looking for a SQL Server replication book?
> http://www.nwsu.com/0974973602.html
> Looking for a FAQ on Indexing Services/SQL FTS
> http://www.indexserverfaq.com
> "Leah" <tech@.kaplooey.com> wrote in message
> news:O9LBJo2GGHA.2444@.TK2MSFTNGP11.phx.gbl...
>
|||Okay - I found a source for the scripts.
http://www.webtropy.com/articles/sql...cedure.asp?SQL
I'm still trying to remove the old subscription from the subscriber.
"Leah" <tech@.kaplooey.com> wrote in message
news:eVK6y5DHGHA.984@.tk2msftngp13.phx.gbl...
>I ran the script in both places. didn't get rifd of the subscription. In
>the meantime, I'm trying to re-establish merge replication, and now I get
>the cant find sp_MSupdate_replication_status in the master table. Where is
>this script located, so I can reinstall it?
> Thanks for your help.
>
> Leah
>
> "Hilary Cotter" <hilary.cotter@.gmail.com> wrote in message
> news:OQn9ot3GGHA.3728@.tk2msftngp13.phx.gbl...
>
|||http://www.replicationanswers.com/General.asp had it:
L.
"Leah" <tech@.kaplooey.com> wrote in message
news:O9LBJo2GGHA.2444@.TK2MSFTNGP11.phx.gbl...
> The publisher has been disabled. But on the subscriber, I'm unable to
> delete the subscription. It was a merge.
> I tried to use sp_dropmergesubscription, but I've been unable to find a
> good syntax example. And from which place do I run it?
>
> Thanks in advance for any help.
>
> Leah
>

Sunday, March 25, 2012

delete a replicated database as publisher

Hi,
I couldn't delete a replicated db after I disabled the database as the
publisher.
any ideas?
Thanks,
You should be able to. What is the error message you are getting?
Hilary Cotter
Director of Text Mining and Database Strategy
RelevantNOISE.Com - Dedicated to mining blogs for business intelligence.
This posting is my own and doesn't necessarily represent RelevantNoise's
positions, strategies or opinions.
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
"mecn" <mecn2002@.yahoo.com> wrote in message
news:uuoQzfb4GHA.3604@.TK2MSFTNGP03.phx.gbl...
> Hi,
> I couldn't delete a replicated db after I disabled the database as the
> publisher.
> any ideas?
> Thanks,
>
|||Thanks, Hilary.
I got error says that Db can't be dropped because is being replicated.
Thanks again
"Hilary Cotter" <hilary.cotter@.gmail.com> wrote in message
news:O4T1iBd4GHA.3404@.TK2MSFTNGP04.phx.gbl...
> You should be able to. What is the error message you are getting?
> --
> Hilary Cotter
> Director of Text Mining and Database Strategy
> RelevantNOISE.Com - Dedicated to mining blogs for business intelligence.
> This posting is my own and doesn't necessarily represent RelevantNoise's
> positions, strategies or opinions.
> Looking for a SQL Server replication book?
> http://www.nwsu.com/0974973602.html
> Looking for a FAQ on Indexing Services/SQL FTS
> http://www.indexserverfaq.com
>
> "mecn" <mecn2002@.yahoo.com> wrote in message
> news:uuoQzfb4GHA.3604@.TK2MSFTNGP03.phx.gbl...
>
|||Sorry,
I re-tried to disable the publisher again. It tells me that not able to
disable the publisher beacuse distribution is in use .
Thanks
"Hilary Cotter" <hilary.cotter@.gmail.com> wrote in message
news:O4T1iBd4GHA.3404@.TK2MSFTNGP04.phx.gbl...
> You should be able to. What is the error message you are getting?
> --
> Hilary Cotter
> Director of Text Mining and Database Strategy
> RelevantNOISE.Com - Dedicated to mining blogs for business intelligence.
> This posting is my own and doesn't necessarily represent RelevantNoise's
> positions, strategies or opinions.
> Looking for a SQL Server replication book?
> http://www.nwsu.com/0974973602.html
> Looking for a FAQ on Indexing Services/SQL FTS
> http://www.indexserverfaq.com
>
> "mecn" <mecn2002@.yahoo.com> wrote in message
> news:uuoQzfb4GHA.3604@.TK2MSFTNGP03.phx.gbl...
>
|||sounds like it is messed up somehow. do the following
sp_replicationdboption 'problemdbname','publish','true'
GO
sp_replicationdboption 'problemdbname','merge publish','true'
GO
sp_replicationdboption 'problemdbname','publish','False'
GO
sp_replicationdboption 'problemdbname','merge publish','False'
GO
This should clear the condition.
Hilary Cotter
Director of Text Mining and Database Strategy
RelevantNOISE.Com - Dedicated to mining blogs for business intelligence.
This posting is my own and doesn't necessarily represent RelevantNoise's
positions, strategies or opinions.
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
"mecn" <mecn2002@.yahoo.com> wrote in message
news:%23U%23gU3i4GHA.696@.TK2MSFTNGP06.phx.gbl...
> Thanks, Hilary.
> I got error says that Db can't be dropped because is being replicated.
> Thanks again
>
> "Hilary Cotter" <hilary.cotter@.gmail.com> wrote in message
> news:O4T1iBd4GHA.3404@.TK2MSFTNGP04.phx.gbl...
>
|||Do any other servers use this server as a distributor?
Hilary Cotter
Director of Text Mining and Database Strategy
RelevantNOISE.Com - Dedicated to mining blogs for business intelligence.
This posting is my own and doesn't necessarily represent RelevantNoise's
positions, strategies or opinions.
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
"mecn" <mecn2002@.yahoo.com> wrote in message
news:Offix%23i4GHA.2264@.TK2MSFTNGP06.phx.gbl...
> Sorry,
> I re-tried to disable the publisher again. It tells me that not able to
> disable the publisher beacuse distribution is in use .
> Thanks
> "Hilary Cotter" <hilary.cotter@.gmail.com> wrote in message
> news:O4T1iBd4GHA.3404@.TK2MSFTNGP04.phx.gbl...
>