Log in
::
Register
::
Not logged in
Home
Tags
Articles
Editorials
Stairways
Forums
Scripts
Videos
Blogs
QotD
Books
Ask SSC
SQL Jobs
Training
Authors
About us
Contact us
Newsletters
Write for us
Recent Posts
Recent Posts
Popular Topics
Popular Topics
Home
Search
Members
Calendar
Who's On
Home
»
SQL Server 7,2000
»
Replication
»
Cannot drop the database XXX because it is...
22 posts, Page 2 of 3
««
1
2
3
»»
Cannot drop the database XXX because it is being used for replication.
Rate Topic
Display Mode
Topic Options
Author
Message
Jerrin
Jerrin
Posted Sunday, February 10, 2008 10:24 PM
SSC-Enthusiastic
Group: General Forum Members
Last Login: Tuesday, November 02, 2010 6:52 AM
Points: 158,
Visits: 52
write this and then try to update the system table
sp_configure 'allow updates',1
reconfigure with override
Then after the update execute this
sp_configure 'allow updates',0
reconfigure with override
Post #453723
ryang9639@yahoo.com
ryang9639@yahoo.com
Posted Friday, June 27, 2008 2:41 PM
Forum Newbie
Group: General Forum Members
Last Login: Friday, July 27, 2012 10:41 AM
Points: 2,
Visits: 104
Hi,
Try to setup Server Seeting-> Server behaiver->allow modifications to be made directly to system catalogs
Richard Yang
Post #525349
shah797
shah797
Posted Thursday, July 17, 2008 2:11 PM
Forum Newbie
Group: General Forum Members
Last Login: Wednesday, September 19, 2012 11:44 AM
Points: 4,
Visits: 64
This will let you update. This is dangerous so make sure to run allow updates 0
sp_configure 'allow updates',1
GO
RECONFIGURE WITH OVERRIDE
GO
update sysdatabases set category=0 where name = 'xxx'
sp_configure 'allow updates',0
GO
RECONFIGURE WITH OVERRIDE
GO
Post #536304
GrahamO-735217
GrahamO-735217
Posted Sunday, July 27, 2008 8:34 PM
Grasshopper
Group: General Forum Members
Last Login: Monday, July 28, 2008 8:36 PM
Points: 11,
Visits: 41
Is this any help?
http://www.dbforums.com/showthread.php?t=708918
Graham Okely B App Sc
Senior Database Administrator
Post #541588
achir.lui
achir.lui
Posted Thursday, January 08, 2009 3:28 AM
Forum Newbie
Group: General Forum Members
Last Login: Thursday, January 08, 2009 3:24 AM
Points: 1,
Visits: 1
I got the same problem.I tried to solved it.Then I checked "Replication" item,found that I set up the Publications rule for the detached database.So you can check the Publication and Subscriptions.
Post #632209
phillip_latham
phillip_latham
Posted Wednesday, February 25, 2009 7:03 AM
Forum Newbie
Group: General Forum Members
Last Login: Thursday, June 28, 2012 2:08 PM
Points: 1,
Visits: 57
Hello, you need to run the following:
sp_configure "allow updates", 1
go
Reconfigure with override
go
After you execute the failing command:
sp_configure "allow updates", 0
go
Reconfigure with override
go
Hope this helps.
Todd
Post #664210
lyhe
lyhe
Posted Thursday, April 09, 2009 11:54 AM
Forum Newbie
Group: General Forum Members
Last Login: Monday, September 20, 2010 11:58 AM
Points: 1,
Visits: 28
Taking the database offline works like a charm. Thanks raja
Post #694312
rafael.algora
rafael.algora
Posted Friday, August 28, 2009 2:06 AM
Grasshopper
Group: General Forum Members
Last Login: Tuesday, August 03, 2010 7:40 AM
Points: 13,
Visits: 24
You must use the next:
use master
GO
sp_configure 'allow updates', 1
GO
RECONFIGURE WITH OVERRIDE
GO
to allow updates over system databases
When you finish the operation, yo must run the next:
use master
GO
sp_configure 'allow updates', 0
GO
RECONFIGURE WITH OVERRIDE
GO
Post #778932
SA-1
SA-1
Posted Tuesday, September 15, 2009 7:13 AM
Ten Centuries
Group: General Forum Members
Last Login: Thursday, May 02, 2013 7:35 AM
Points: 1,140,
Visits: 933
Go back and drop the data / log files since dropping an offline database doesn't delete these files.
Post #788117
rfonseca
rfonseca
Posted Monday, April 19, 2010 11:35 AM
SSC Rookie
Group: General Forum Members
Last Login: Thursday, November 22, 2012 8:23 AM
Points: 29,
Visits: 109
Taking it offline worked. Thanks for the post!
Post #906212
« Prev Topic
|
Next Topic »
22 posts, Page 2 of 3
««
1
2
3
»»
Permissions
You
cannot
post new topics.
You
cannot
post topic replies.
You
cannot
post new polls.
You
cannot
post replies to polls.
You
cannot
edit your own topics.
You
cannot
delete your own topics.
You
cannot
edit other topics.
You
cannot
delete other topics.
You
cannot
edit your own posts.
You
cannot
edit other posts.
You
cannot
delete your own posts.
You
cannot
delete other posts.
You
cannot
post events.
You
cannot
edit your own events.
You
cannot
edit other events.
You
cannot
delete your own events.
You
cannot
delete other events.
You
cannot
send private messages.
You
cannot
send emails.
You
may
read topics.
You
cannot
rate topics.
You
cannot
vote within polls.
You
cannot
upload attachments.
You
may
download attachments.
You
cannot
post HTML code.
You
cannot
edit HTML code.
You
cannot
post IFCode.
You
cannot
post JavaScript.
You
cannot
post EmotIcons.
You
cannot
post or upload images.
Copyright © 2002-2013 Simple Talk Publishing. All Rights Reserved.
Privacy Policy.
Terms of Use.
Report Abuse.