<?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/"
		>
<channel>
	<title>Comments on: SQL Server: Understanding and Controlling Connection-Pooling Fragmentation</title>
	<atom:link href="http://www.pythian.com/news/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pythian.com/news/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation/</link>
	<description>News and views from Pythian DBAs</description>
	<lastBuildDate>Fri, 10 Feb 2012 13:01:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Mohammed Mawla</title>
		<link>http://www.pythian.com/news/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation/#comment-612171</link>
		<dc:creator>Mohammed Mawla</dc:creator>
		<pubDate>Fri, 14 Oct 2011 01:00:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation#comment-612171</guid>
		<description>Amit,
The SQLConnection.changedatabase does change database context for an **open connection** , thus the connection initial DB was master so the connection pooling is still for master

Please refer to 

http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.changedatabase%28v=VS.85%29.aspx


The connection pooler is not influenced by ChangeDatabase as long you do not set Connection Reset to false. As the connection comes out of the pool the connection is reset with the server moving back to the login time database. There are no new connections created or reauthentications. If you set Connection Reset to false, connections in the pool to different databases might result.</description>
		<content:encoded><![CDATA[<p>Amit,<br />
The SQLConnection.changedatabase does change database context for an **open connection** , thus the connection initial DB was master so the connection pooling is still for master</p>
<p>Please refer to </p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.changedatabase%28v=VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.changedatabase%28v=VS.85%29.aspx</a></p>
<p>The connection pooler is not influenced by ChangeDatabase as long you do not set Connection Reset to false. As the connection comes out of the pool the connection is reset with the server moving back to the login time database. There are no new connections created or reauthentications. If you set Connection Reset to false, connections in the pool to different databases might result.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amit</title>
		<link>http://www.pythian.com/news/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation/#comment-611833</link>
		<dc:creator>Amit</dc:creator>
		<pubDate>Thu, 13 Oct 2011 05:53:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation#comment-611833</guid>
		<description>If I use the change database statement of SQL Connection object then for which database the pool wil be maintained ?

For eg: In my connection string I have master database. I have opened the connection for master database, then I am using SQLConnection.changedatabase(&quot;northwind&quot;). Then I am executing query for a table which exists on Northwind. 

Please let me know for which the connection pool will be maintained. For master or for Northwind.</description>
		<content:encoded><![CDATA[<p>If I use the change database statement of SQL Connection object then for which database the pool wil be maintained ?</p>
<p>For eg: In my connection string I have master database. I have opened the connection for master database, then I am using SQLConnection.changedatabase(&#8220;northwind&#8221;). Then I am executing query for a table which exists on Northwind. </p>
<p>Please let me know for which the connection pool will be maintained. For master or for Northwind.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hashim Abbas</title>
		<link>http://www.pythian.com/news/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation/#comment-608489</link>
		<dc:creator>Hashim Abbas</dc:creator>
		<pubDate>Fri, 07 Oct 2011 06:41:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation#comment-608489</guid>
		<description>Excellent information :) (Y)</description>
		<content:encoded><![CDATA[<p>Excellent information :) (Y)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tiago Sumita</title>
		<link>http://www.pythian.com/news/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation/#comment-565819</link>
		<dc:creator>Tiago Sumita</dc:creator>
		<pubDate>Tue, 05 Jul 2011 15:51:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation#comment-565819</guid>
		<description>Great article!</description>
		<content:encoded><![CDATA[<p>Great article!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mayur</title>
		<link>http://www.pythian.com/news/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation/#comment-531669</link>
		<dc:creator>Mayur</dc:creator>
		<pubDate>Sat, 09 Apr 2011 04:41:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation#comment-531669</guid>
		<description>I connect SQL server 2008 with Microsoft SQL server Management studio it was connect with using database engine server authentication it was connect. I was use this database connection in local site it was working perfect but when we use this same site online it was some time database connected and sometime not connected.
Please help me to solve this problem..</description>
		<content:encoded><![CDATA[<p>I connect SQL server 2008 with Microsoft SQL server Management studio it was connect with using database engine server authentication it was connect. I was use this database connection in local site it was working perfect but when we use this same site online it was some time database connected and sometime not connected.<br />
Please help me to solve this problem..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rasmus Striib</title>
		<link>http://www.pythian.com/news/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation/#comment-504199</link>
		<dc:creator>Rasmus Striib</dc:creator>
		<pubDate>Wed, 02 Feb 2011 13:10:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation#comment-504199</guid>
		<description>This is a very good explanation of the nature of SQL Server connection pools. Saved me a lot of time. Thanks.</description>
		<content:encoded><![CDATA[<p>This is a very good explanation of the nature of SQL Server connection pools. Saved me a lot of time. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Links: 2010-October &#171; Sheen Space</title>
		<link>http://www.pythian.com/news/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation/#comment-467947</link>
		<dc:creator>Links: 2010-October &#171; Sheen Space</dc:creator>
		<pubDate>Fri, 22 Oct 2010 10:34:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation#comment-467947</guid>
		<description>[...] SQL Server: Understanding and Controlling Connection-Pooling Fragmentation [...]</description>
		<content:encoded><![CDATA[<p>[...] SQL Server: Understanding and Controlling Connection-Pooling Fragmentation [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pooled Connections &#171; Systems Engineering and RDBMS</title>
		<link>http://www.pythian.com/news/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation/#comment-433189</link>
		<dc:creator>Pooled Connections &#171; Systems Engineering and RDBMS</dc:creator>
		<pubDate>Mon, 31 May 2010 17:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation#comment-433189</guid>
		<description>[...] Article at Pythian &#8211; excellent article discussing connection pooling &#8211; here. [...]</description>
		<content:encoded><![CDATA[<p>[...] Article at Pythian &#8211; excellent article discussing connection pooling &#8211; here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mohammed Mawla</title>
		<link>http://www.pythian.com/news/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation/#comment-387819</link>
		<dc:creator>Mohammed Mawla</dc:creator>
		<pubDate>Tue, 24 Nov 2009 22:30:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation#comment-387819</guid>
		<description>Hey Vineet,

The blog mentions a scenario of multiple **web** servers and single database server.

In all cases , connection pooling should be enabled even if you use only one application server as it will help somehow.

HTH</description>
		<content:encoded><![CDATA[<p>Hey Vineet,</p>
<p>The blog mentions a scenario of multiple **web** servers and single database server.</p>
<p>In all cases , connection pooling should be enabled even if you use only one application server as it will help somehow.</p>
<p>HTH</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vineet</title>
		<link>http://www.pythian.com/news/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation/#comment-387251</link>
		<dc:creator>vineet</dc:creator>
		<pubDate>Mon, 23 Nov 2009 06:32:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/1270/sql-server-understanding-and-controlling-connection-pooling-fragmentation#comment-387251</guid>
		<description>This article is very usefull for me.You have explained alot of abount connection polling.
It give me a greate information.
Thanks a Lot.

But if my application uses only one database server not destributed then whether I should 
use Pooling=True Or not?</description>
		<content:encoded><![CDATA[<p>This article is very usefull for me.You have explained alot of abount connection polling.<br />
It give me a greate information.<br />
Thanks a Lot.</p>
<p>But if my application uses only one database server not destributed then whether I should<br />
use Pooling=True Or not?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

