 




<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SQL Server with Mr. Denny &#187; Multiple Instance Configuration</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/sql-server/tag/multiple-instance-configuration/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/sql-server</link>
	<description></description>
	<lastBuildDate>Fri, 17 May 2013 17:04:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Single Instance vs Multiple Instances</title>
		<link>http://itknowledgeexchange.techtarget.com/sql-server/single-instance-vs-multiple-instances/</link>
		<comments>http://itknowledgeexchange.techtarget.com/sql-server/single-instance-vs-multiple-instances/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 11:00:00 +0000</pubDate>
		<dc:creator>Denny Cherry</dc:creator>
				<category><![CDATA[Instance]]></category>
		<category><![CDATA[Multiple Instance Configuration]]></category>
		<category><![CDATA[RAM]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[TempDB]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/sql-server/single-instance-vs-multiple-instances/</guid>
		<description><![CDATA[I see this question quite a bit, should I use a single instance or one instance per application database on my server. The answer to this is it depends. If you need a clear security buffer between the databases so that someone with sysadmin rights to one database can&#8217;t have sysadmin rights to another database [...]]]></description>
				<content:encoded><![CDATA[<p>I see this question quite a bit, should I use a single instance or one instance per application database on my server.<span id="more-630"></span></p>
<p>The answer to this is it depends.</p>
<p>If you need a clear security buffer between the databases so that someone with sysadmin rights to one database can&#8217;t have sysadmin rights to another database then seperate instances will be the way to go.  However this separation will come at a cost.  You now have to use twice as much memory loading up the SQL Server binaries into memory, and you now have to tell the instances how much memory each one can use.</p>
<p>With a single instance you simply tell the SQL Server leave 1 Gig of RAM for the OS (or how ever much you leave) and manage the rest for all the databases on the instance.  When you have more than one instance you have to decided how much memory each instance, and therefor each database will get.  If you guess incorrectly your database performance will suffer greatly because of it.</p>
<p>Another place where you may see some pain is your tempdb performance (assuming that both instances use the same tempdb).  Because you are using two difference instances the SQL Server doesn&#8217;t know anything about the load that the other one is trying to place on the disk.  If they both try to hit the disk at the same time with a large amount of load you could end up with additional queuing at the disk that you may not see when using a single instance.</p>
<p>Generally speaking I would recommend using a single instance unless you absolutly had to have a security seperation with the RAM settings being my biggest reason for a single instance.</p>
<p>As for reasons to need a seperate instance databases that need access to features that other databases shouldn&#8217;t have access to like xp_cmdshell would be one reason.  Applications which require sysadmin rights to the instance thanks to crappy coding would be another.  And a vendor which requires that there support account on the database have sysadmin rights would be a third.  Off the top of my head those would be about the only reason to seperate the instances.</p>
<p>Denny</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/sql-server/single-instance-vs-multiple-instances/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
