14 Dec 2007 at 20:07 #1 Gman Gman Soldato Joined 18 Oct 2002 Posts 4,925 Location Yorkshire I'm using management studio 2005 is there anyway to see how many open connections there are to a particular database from my website? Just wanting to check that I closed everything that needs closing. Cheers
I'm using management studio 2005 is there anyway to see how many open connections there are to a particular database from my website? Just wanting to check that I closed everything that needs closing. Cheers
14 Dec 2007 at 20:32 #2 voodooflux voodooflux Associate Joined 6 Nov 2003 Posts 991 Location Redditch You might be able to get the information you want by running the sp_who system stored procedure: Code: exec sp_who
You might be able to get the information you want by running the sp_who system stored procedure: Code: exec sp_who
14 Dec 2007 at 20:43 #3 Gman Gman Soldato OP Joined 18 Oct 2002 Posts 4,925 Location Yorkshire thanks should be able to use that seems to show them Cheers