<?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; 2005 &#8211; Retrieve Processes Using Specified Database</title>
	<atom:link href="http://blog.sqlauthority.com/2008/03/15/sql-server-2005-retrieve-processes-using-specified-database/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/03/15/sql-server-2005-retrieve-processes-using-specified-database/</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: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #020 &#124; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2008/03/15/sql-server-2005-retrieve-processes-using-specified-database/#comment-438053</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #020 &#124; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 16 Mar 2013 01:30:31 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=537#comment-438053</guid>
		<description><![CDATA[[...] Retrieve Processes Using Specified Database A simple straight to script blog post where we discuss how to retrieve the processes accessing database in SQL Server. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Retrieve Processes Using Specified Database A simple straight to script blog post where we discuss how to retrieve the processes accessing database in SQL Server. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jerry Hung II</title>
		<link>http://blog.sqlauthority.com/2008/03/15/sql-server-2005-retrieve-processes-using-specified-database/#comment-265273</link>
		<dc:creator><![CDATA[Jerry Hung II]]></dc:creator>
		<pubDate>Tue, 20 Mar 2012 10:44:04 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=537#comment-265273</guid>
		<description><![CDATA[I am sure this is the way it has to be...]]></description>
		<content:encoded><![CDATA[<p>I am sure this is the way it has to be&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Realm174</title>
		<link>http://blog.sqlauthority.com/2008/03/15/sql-server-2005-retrieve-processes-using-specified-database/#comment-57805</link>
		<dc:creator><![CDATA[Realm174]]></dc:creator>
		<pubDate>Sun, 22 Nov 2009 16:57:55 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=537#comment-57805</guid>
		<description><![CDATA[I used the above snippet to figure out why I was unable to drop my table.. looks like the &#039;sa&#039; account is using it in background.... 

(status = background and loginame  = sa)


I&#039;m using SQL Server Express 2008, in Windows Authentication mode, and I&#039;m the only person using the database at the moment.

So I&#039;m not sure where &#039;sa&#039; is coming from...]]></description>
		<content:encoded><![CDATA[<p>I used the above snippet to figure out why I was unable to drop my table.. looks like the &#8216;sa&#8217; account is using it in background&#8230;. </p>
<p>(status = background and loginame  = sa)</p>
<p>I&#8217;m using SQL Server Express 2008, in Windows Authentication mode, and I&#8217;m the only person using the database at the moment.</p>
<p>So I&#8217;m not sure where &#8216;sa&#8217; is coming from&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arturo A.Asenga</title>
		<link>http://blog.sqlauthority.com/2008/03/15/sql-server-2005-retrieve-processes-using-specified-database/#comment-34453</link>
		<dc:creator><![CDATA[Arturo A.Asenga]]></dc:creator>
		<pubDate>Wed, 19 Mar 2008 13:53:19 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=537#comment-34453</guid>
		<description><![CDATA[Please sending me the datail for the SQL becouse i&#039;m an IT
officer and my interest is to be database manager
sincerely,
Arturo A.Asenga]]></description>
		<content:encoded><![CDATA[<p>Please sending me the datail for the SQL becouse i&#8217;m an IT<br />
officer and my interest is to be database manager<br />
sincerely,<br />
Arturo A.Asenga</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jerry Hung</title>
		<link>http://blog.sqlauthority.com/2008/03/15/sql-server-2005-retrieve-processes-using-specified-database/#comment-34395</link>
		<dc:creator><![CDATA[Jerry Hung]]></dc:creator>
		<pubDate>Mon, 17 Mar 2008 13:50:23 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=537#comment-34395</guid>
		<description><![CDATA[I thought this would be cleaner and easier


SELECT &#039;These processes are using database &#039; AS Note
		,[Database]=DB_NAME(dbid), spid, last_batch,
       status, hostname, loginame
FROM sys.sysprocesses
WHERE dbid = DB_ID(&#039;master&#039;) -- replace DB name here]]></description>
		<content:encoded><![CDATA[<p>I thought this would be cleaner and easier</p>
<p>SELECT &#8216;These processes are using database &#8216; AS Note<br />
		,[Database]=DB_NAME(dbid), spid, last_batch,<br />
       status, hostname, loginame<br />
FROM sys.sysprocesses<br />
WHERE dbid = DB_ID(&#8216;master&#8217;) &#8212; replace DB name here</p>
]]></content:encoded>
	</item>
</channel>
</rss>
