Dropping an active connection on an attached database
am 09.01.2008 19:42:25 von danbredy
Why in the hell doesn't SQL Server provide a facility for dropping an
active connection on an attached database in SQL Server Management
console? I can't detach an attached database because apparently there
is an active connection.
I know you can use SSEUTIL but it seems like kluge for a poorly
thought out function.
Crazy
Re: Dropping an active connection on an attached database
am 09.01.2008 23:40:42 von Erland Sommarskog
Crazy Cat (danbredy@hotmail.com) writes:
> Why in the hell doesn't SQL Server provide a facility for dropping an
> active connection on an attached database in SQL Server Management
> console? I can't detach an attached database because apparently there
> is an active connection.
ALTER DATABASE db SET SINGLE_USER WITH ROLLBACK IMMEDIATE
--
Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/prodtechnol/sql/2005/downlo ads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinfo/previousversions/books .mspx
Re: Dropping an active connection on an attached database
am 15.01.2008 15:46:55 von danbredy
On Jan 9, 5:40 pm, Erland Sommarskog wrote:
> Crazy Cat (danbr...@hotmail.com) writes:
> > Why in the hell doesn't SQL Server provide a facility for dropping an
> > active connection on an attached database in SQL Server Management
> > console? I can't detach an attached database because apparently there
> > is an active connection.
>
> ALTER DATABASE db SET SINGLE_USER WITH ROLLBACK IMMEDIATE
>
> --
> Erland Sommarskog, SQL Server MVP, esq...@sommarskog.se
>
> Books Online for SQL Server 2005 athttp://www.microsoft.com/technet/prodtechnol/sql/2005/down loads/books...
> Books Online for SQL Server 2000 athttp://www.microsoft.com/sql/prodinfo/previousversions/boo ks.mspx
Thanks Erland, I'll give it a try.
You are the man!
Crazy