<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Change Database Access to Single User Mode Using SSMS</title>
	<atom:link href="http://blog.sqlauthority.com/2010/11/21/sql-server-change-database-access-to-single-user-mode-using-ssms/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2010/11/21/sql-server-change-database-access-to-single-user-mode-using-ssms/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 17 May 2013 15:26:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Sukanta Kumar Biti</title>
		<link>http://blog.sqlauthority.com/2010/11/21/sql-server-change-database-access-to-single-user-mode-using-ssms/#comment-473968</link>
		<dc:creator><![CDATA[Sukanta Kumar Biti]]></dc:creator>
		<pubDate>Sun, 12 May 2013 19:39:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=10956#comment-473968</guid>
		<description><![CDATA[if i have 30 database in single instance, do i need to go one by one and change in to single user mode to take the backup ?

Also how do i take the back of complete 30 database in a single click ? Do we have any way through GUI mean SQL mangement Studio]]></description>
		<content:encoded><![CDATA[<p>if i have 30 database in single instance, do i need to go one by one and change in to single user mode to take the backup ?</p>
<p>Also how do i take the back of complete 30 database in a single click ? Do we have any way through GUI mean SQL mangement Studio</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #006 &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2010/11/21/sql-server-change-database-access-to-single-user-mode-using-ssms/#comment-389237</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #006 &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 08 Dec 2012 01:30:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=10956#comment-389237</guid>
		<description><![CDATA[[...] FIX : Error : 3702 Cannot drop database because it is currently in use This is a very generic error when DROP Database is command is executed and the database is not dropped. The common mistake user is kept the connection open with this database and trying to drop the database. The database cannot be dropped if there is any other connection open along with it. It is always a good idea to take database in single user mode before dropping it. Here is the quick tutorial regarding how to bring the database in single user mode: Using T-SQL &#124; Using SSMS. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] FIX : Error : 3702 Cannot drop database because it is currently in use This is a very generic error when DROP Database is command is executed and the database is not dropped. The common mistake user is kept the connection open with this database and trying to drop the database. The database cannot be dropped if there is any other connection open along with it. It is always a good idea to take database in single user mode before dropping it. Here is the quick tutorial regarding how to bring the database in single user mode: Using T-SQL | Using SSMS. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #005 &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2010/11/21/sql-server-change-database-access-to-single-user-mode-using-ssms/#comment-384376</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #005 &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 01 Dec 2012 01:30:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=10956#comment-384376</guid>
		<description><![CDATA[[...] SQL SERVER – Cursor to Kill All Process in Database I indeed wrote this cursor and when I often look back, I wonder how naive I was to write this. The reason for writing this cursor was to free up my database from any existing connection so I can do database operation. This worked fine but there can be a potentially big issue if there was any important transaction was killed by this process. There is another way to to achieve the same thing where we can use ALTER syntax to take database in single user mode. Read more about that over here and here. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] SQL SERVER – Cursor to Kill All Process in Database I indeed wrote this cursor and when I often look back, I wonder how naive I was to write this. The reason for writing this cursor was to free up my database from any existing connection so I can do database operation. This worked fine but there can be a potentially big issue if there was any important transaction was killed by this process. There is another way to to achieve the same thing where we can use ALTER syntax to take database in single user mode. Read more about that over here and here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #004 &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2010/11/21/sql-server-change-database-access-to-single-user-mode-using-ssms/#comment-379690</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #004 &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 24 Nov 2012 01:31:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=10956#comment-379690</guid>
		<description><![CDATA[[...] Change Database Access to Single User Mode Using SSMS Image says all. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Change Database Access to Single User Mode Using SSMS Image says all. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: azin</title>
		<link>http://blog.sqlauthority.com/2010/11/21/sql-server-change-database-access-to-single-user-mode-using-ssms/#comment-101236</link>
		<dc:creator><![CDATA[azin]]></dc:creator>
		<pubDate>Sun, 21 Nov 2010 05:48:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=10956#comment-101236</guid>
		<description><![CDATA[hi Pinal
I can&#039;t see the pic..
would you please right down the structure too???
tnx]]></description>
		<content:encoded><![CDATA[<p>hi Pinal<br />
I can&#8217;t see the pic..<br />
would you please right down the structure too???<br />
tnx</p>
]]></content:encoded>
	</item>
</channel>
</rss>
