Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

take db out of single user mode

Status
Not open for further replies.

jayraykay

Programmer
Mar 10, 2004
22
US
Hello,

I have a database on sql2000 that went in to single user mode for some odd reason.

How do I take it out of singel user mode???

Thanks!
J
 
Try this in Query Analyzer ...

Code:
exec sp_dboption 'MyDB', 'SINGLE USER', 'FALSE'

Change MyDB to the needed DB.

Thanks

J. Kusch
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top