Jun 15, 2004 #1 jayraykay Programmer Joined Mar 10, 2004 Messages 22 Location 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
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
Jun 15, 2004 #2 JayKusch MIS Joined Oct 30, 2001 Messages 3,199 Location US Try this in Query Analyzer ... Code: exec sp_dboption 'MyDB', 'SINGLE USER', 'FALSE' Change MyDB to the needed DB. Thanks J. Kusch Upvote 0 Downvote
Try this in Query Analyzer ... Code: exec sp_dboption 'MyDB', 'SINGLE USER', 'FALSE' Change MyDB to the needed DB. Thanks J. Kusch