|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Friday, June 10, 2011 2:04 PM
Points: 65,
Visits: 67
|
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Thursday, March 07, 2013 5:16 AM
Points: 1,
Visits: 48
|
|
If you are attempting to get the db into single user mode, you can use.
ALTER DATABASE db_name SET SINGLE_USER WITH ROLLBACK IMMEDIATE
|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Wednesday, May 08, 2013 4:07 AM
Points: 25,
Visits: 227
|
|
I just do this:
ALTER DATABASE dbname SET SINGLE_USER WITH ROLLBACK IMMEDIATE GO
ALTER DATABASE dbname SET MULTI_USER GO Any advantage or disadvantage over the script?
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Thursday, May 09, 2013 9:23 AM
Points: 1,288,
Visits: 2,996
|
|
mannaggia (2/15/2011)
I just do this: ALTER DATABASE dbname SET SINGLE_USER WITH ROLLBACK IMMEDIATE GO
ALTER DATABASE dbname SET MULTI_USER GO Any advantage or disadvantage over the script?
This works easier for me. The only reason to kill all the spids usually anyway is to put the database into another mode besides multi_user.
"Technology is a weird thing. It brings you great gifts with one hand, and it stabs you in the back with the other. ... "
|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Wednesday, May 08, 2013 4:07 AM
Points: 25,
Visits: 227
|
|
TravisDBA (2/15/2011)This works easier for me. The only reason to kill all the spids usually anyway is to put the database into another mode besides multi_user.  I use it when I need to restore a database and there are open connections to the database I want to restore. (This is usually during development when I need to restore a copy of a production database onto a staging or development server.)
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Thursday, May 09, 2013 9:23 AM
Points: 1,288,
Visits: 2,996
|
|
mannaggia (2/15/2011)
TravisDBA (2/15/2011)This works easier for me. The only reason to kill all the spids usually anyway is to put the database into another mode besides multi_user.  I use it when I need to restore a database and there are open connections to the database I want to restore. (This is usually during development when I need to restore a copy of a production database onto a staging or development server.)
Yep, me too but another SPID can sneak in there before you start the restore for some reason, so I always just put the database in single user mode right after in the script where I do the ALTER DATABASE with ROLLBACK IMMEDIATE and right before the restore...
"Technology is a weird thing. It brings you great gifts with one hand, and it stabs you in the back with the other. ... "
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Yesterday @ 5:03 AM
Points: 1,162,
Visits: 3,328
|
|
mannaggia (2/15/2011)
I just do this: ALTER DATABASE dbname SET SINGLE_USER WITH ROLLBACK IMMEDIATE GO
ALTER DATABASE dbname SET MULTI_USER GO Any advantage or disadvantage over the script? I guess it depends on the conext of the situation, but I'd generally reccomend RESTRICTED_USER (allowing any SYSADMIN to connect multiple times) over SINGLE_USER, which allows ANY user to grab the next connection exclusively.
"Wise people understand the 10,000 things without going to each one. They know them without having to look at each one, and they transform all without acting on each one." - The Tao Te Ching: Verse 47
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Friday, June 10, 2011 2:04 PM
Points: 65,
Visits: 67
|
|
As good as "ALTER DATABASE SET SINGLE_USER WITH ROLLBACK IMMEDIATE" can be, in some situations it can't be successful. You may get the below errors if there are uncommitted distributed transactions access the database. My script is designed for overcoming these...saving a trip to restart the SQL instance.
Msg 5061, Level 16, State 1, Line 1 ALTER DATABASE failed because a lock could not be placed on database 'Test'. Try again later. Msg 5069, Level 16, State 1, Line 1 ALTER DATABASE statement failed.
The "ALTER Database Set " command is not a guarrantee, folks. Wish everyone would never have to use my Kill script 
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Friday, June 10, 2011 2:04 PM
Points: 65,
Visits: 67
|
|
"Alter Database" usually works. However, it may fail if there are un-committed distributed transactions. In this case the SPID is not showing under the database, and can't be terminated by "Alter Database"
I usually would run the "Kill" script I posted here to "clean up" ALL, explicit and implicit, connections. Then Run the "Alter Database Set Single_User..." to claim the exclusive connection right to the database in order to do my work.
I have seen DBAs got stuck in this situation, and ended up going for the last resort: restart SQL.
Hope the above has explained.
|
|
|
|