<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://sqlblog.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Search results matching tags 'SQL Server 2012', 'x64', 'awe', and 'trace flags'</title><link>http://sqlblog.com/search/SearchResults.aspx?o=DateDescending&amp;tag=SQL+Server+2012,x64,awe,trace+flags&amp;orTags=0</link><description>Search results matching tags 'SQL Server 2012', 'x64', 'awe', and 'trace flags'</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP2 (Build: 61129.1)</generator><item><title>Upgrading to SQL Server 2012 with Lock Pages in Memory</title><link>http://sqlblog.com/blogs/aaron_bertrand/archive/2012/02/06/upgrading-to-sql-server-2012-with-lock-pages-in-memory.aspx</link><pubDate>Mon, 06 Feb 2012 20:36:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:40107</guid><dc:creator>AaronBertrand</dc:creator><description>&lt;p&gt;During SQL Server 2012 RC0 setup (specifically when upgrading), you may have noticed upgrade rules regarding Lock Pages in Memory (LPIM):&lt;/p&gt;

&lt;p style="margin-left:40px;"&gt;&lt;img src="http://bertrandaaron.files.wordpress.com/2011/12/lpim_9.png" height="615" border="0" width="820"&gt;&lt;br&gt;&lt;/p&gt;

&lt;p&gt;However, for most folks, these rules always pass, whether or not they are actually using LPIM. I wanted to run a few tests to demonstrate why this is - or at least in which situations the rule checks will fail. So I created two virtual machines running SQL Server 2008 R2 SP1 CU3 - one running Windows Server 2008 SP2 (x86), the other running Windows Server 2008 R2 SP1 (x64 obviously). Both machines have 4 CPUs and 8GB of RAM, and have been updated with all Windows Updates (except Internet Explorer) as of the time of writing. I set up SQL Server to run as an explicit user account (to make it easy to assign LPIM rights for the appropriate tests). &lt;/p&gt;

&lt;p&gt;I will attempt to upgrade SQL Server under various scenarios (LPIM / AWE on x86, and LPIM / trace flag 845 on x64 - &lt;a href="http://support.microsoft.com/kb/970070" title="http://support.microsoft.com/kb/970070" target="_blank"&gt;required for LPIM on Standard Edition&lt;/a&gt;). All of these tests will be run with LPIM enabled, but other settings will vary as follows:&lt;br&gt;&lt;/p&gt;
&lt;div style="margin-left:40px;"&gt;&lt;img src="http://bertrandaaron.files.wordpress.com/2011/12/lpim_7a.png" height="109" border="0" width="597"&gt;&lt;br&gt;&lt;/div&gt;
&lt;p&gt;On the 2008 box, to make sure that AWE can be used by SQL Server, you may first need to set this at the operating system level - this depends on the specific operating system, whether DEP is enabled, amount of RAM and other factors. It used to be quite easy - go into boot.ini, add the /PAE switch, and reboot. Starting with Windows Server 2008, this changed to use the command-line utility bcdedit. To ensure that AWE and PAE are explicitly set on this specific system (x86 box with 8GB RAM), you could run the following command at an elevated command prompt:&lt;/p&gt;

&lt;blockquote&gt;
&lt;table bgcolor="#eeeeee" cellpadding="0" cellspacing="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;pre style="padding:10px 20px;font-size:12px;font-family:consolas,lucida console,courier new,courier;-moz-background-inline-policy:continuous;"&gt;bcdedit /set pae ForceEnable&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/blockquote&gt;


&lt;p&gt;Of course we don't have to do any of this on the x64 box - and in my case I didn't need to do this on the x86 box, either. But the matrix for the above can become quite complicated, and is just one more reason to get off of x86 - both Windows and SQL Server - as soon as you can! (Never mind that AWE is no longer supported in SQL Server 2012, nor is a cluster on WoW.)&lt;br&gt;&lt;/p&gt;

&lt;p&gt;Next, to set Lock Pages in Memory, we need to launch the Local Group Policy Editor (Start &amp;gt; Run &amp;gt; gpedit.msc) and add the SQL Server service account to Computer Configuration &amp;gt; Windows Settings &amp;gt; Security Settings &amp;gt; Local Policies &amp;gt; User Rights Assignment &amp;gt; Lock pages in memory:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;img src="http://bertrandaaron.files.wordpress.com/2011/12/lpim_1.png" height="404" border="0" width="688"&gt;&lt;br&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And then set SQL Server to run as the matching account so that it inherits the LPIM rights. You can always change this later, but for a one-off test like this it can be just as easy to specify the service account during setup:&lt;/p&gt;

&lt;p style="margin-left:40px;"&gt;&lt;img src="http://bertrandaaron.files.wordpress.com/2011/12/lpim_2.png" height="448" border="0" width="739"&gt; &lt;br&gt;&lt;/p&gt;

&lt;p&gt;We can then enable trace flag 845 using SQL Server Configuration Manager - right click the appropriate service, choose Properties, and on the Advanced tab, add -T845 to the Startup Parameters list (make sure there is no space between the last ; and -T845):&lt;/p&gt;

&lt;p style="margin-left:40px;"&gt;&lt;img src="http://bertrandaaron.files.wordpress.com/2011/12/lpim_3.png" height="579" border="0" width="728"&gt;&lt;br&gt;&lt;/p&gt;

&lt;p&gt;Note that this is much easier with SQL Server 2012 client tools installed, even against older versions of SQL Server, as there is a new Startup Parameters tab to help you avoid messy typing inside that little combo box:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;img src="http://bertrandaaron.files.wordpress.com/2012/02/lpim_startup.png" height="498" width="428"&gt;&amp;nbsp;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And finally, to enable SQL Server to utilize AWE on the x86 box, you can use the UI through Management Studio, or you can run the following code using sp_configure:&lt;/p&gt;

&lt;blockquote&gt;
&lt;table bgcolor="#eeeeee" cellpadding="0" cellspacing="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;pre style="padding:10px 20px;font-size:12px;font-family:consolas,lucida console,courier new,courier;-moz-background-inline-policy:continuous;"&gt;&lt;font color="blue"&gt;EXEC &lt;/font&gt;&lt;font color="darkred"&gt;sp_configure &lt;/font&gt;&lt;font color="red"&gt;'show advanced options'&lt;/font&gt;&lt;font color="gray"&gt;, &lt;/font&gt;&lt;font color="black"&gt;1&lt;/font&gt;&lt;font color="gray"&gt;;&lt;br&gt;&lt;/font&gt;&lt;font color="blue"&gt;RECONFIGURE WITH OVERRIDE&lt;/font&gt;&lt;font color="gray"&gt;;&lt;br&gt;&lt;/font&gt;&lt;font color="blue"&gt;GO&lt;/font&gt;&lt;br&gt;&lt;font color="blue"&gt;&lt;br&gt;EXEC &lt;/font&gt;&lt;font color="darkred"&gt;sp_configure &lt;/font&gt;&lt;font color="red"&gt;'awe enabled'&lt;/font&gt;&lt;font color="gray"&gt;, &lt;/font&gt;&lt;font color="black"&gt;1&lt;/font&gt;&lt;font color="gray"&gt;;&lt;br&gt;&lt;/font&gt;&lt;font color="blue"&gt;RECONFIGURE WITH &lt;/font&gt;&lt;font color="blue"&gt;OVERRIDE&lt;/font&gt;&lt;font color="gray"&gt;;&lt;br&gt;&lt;/font&gt;&lt;font color="blue"&gt;GO&lt;/font&gt;&lt;br&gt;&lt;br&gt;&lt;font color="blue"&gt;EXEC &lt;/font&gt;&lt;font color="darkred"&gt;sp_configure &lt;/font&gt;&lt;font color="red"&gt;'show advanced options'&lt;/font&gt;&lt;font color="gray"&gt;, &lt;/font&gt;&lt;font color="black"&gt;0&lt;/font&gt;&lt;font color="gray"&gt;;&lt;br&gt;&lt;/font&gt;&lt;font color="blue"&gt;RECONFIGURE WITH &lt;/font&gt;&lt;font color="blue"&gt;OVERRIDE&lt;/font&gt;&lt;font color="gray"&gt;;&lt;br&gt;&lt;/font&gt;&lt;font color="blue"&gt;GO&lt;/font&gt;&lt;font color="black"&gt;&lt;/font&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/blockquote&gt;


&lt;p&gt;(This is all just for testing purposes, but of course I need to point out that you wouldn't just enable AWE or LPIM without also adjusting min/max server memory appropriately and without proper consideration into what other services on the box will need memory.) &lt;br&gt;&lt;/p&gt;

&lt;p&gt;Restart each box and we should be ready for the first tests. We can verify LPIM / AWE via the following entries the SQL Server error log after restart:&lt;/p&gt;

&lt;p style="margin-left:40px;"&gt;For x64, there will be a line item that says "Using locked pages for buffer pool.":&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;img src="http://bertrandaaron.files.wordpress.com/2012/02/lpim_x64_log.png" height="96" border="1" width="435"&gt;&lt;br&gt;&lt;/p&gt;

&lt;p style="margin-left:80px;"&gt;When LPIM is not enabled (e.g. when the user rights assignment has not been set or the trace flag is not in use), the line above does not appear.&lt;/p&gt;

&lt;p style="margin-left:40px;"&gt;For x86, a message like "Using locked pages for buffer 
pool." will not appear in the error log, even though LPIM is enabled in 
this case. Instead you will see a line item about AWE, "Address Windowing Extensions is enabled": &lt;/p&gt;

&lt;p style="margin-left:40px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;img src="http://bertrandaaron.files.wordpress.com/2012/02/lpim_x86_log1.png" height="96" border="1" width="567"&gt;&lt;br&gt;&lt;/p&gt;
&lt;div style="margin-left:80px;"&gt;On
 x86 if LPIM is not enabled (e.g. if you haven't used the trace flag on 
Standard Edition, have not enabled AWE, or have not set the user rights correctly), you will see 
different error messages in the log, such as "SQL Server is not configured to use all of the available system memory. To enable SQL Server to use more memory, set the awe enabled option to 1 by using the sp_configure stored procedure." and "Addressing Windowing Extensions (AWE) requires the 'lock pages in memory' privilege which is not currently present in the access token of the process.":&lt;br&gt;&lt;/div&gt;&lt;div style="margin-left:80px;"&gt;&amp;nbsp;&lt;/div&gt;&lt;div style="margin-left:80px;"&gt;&lt;img src="http://bertrandaaron.files.wordpress.com/2012/02/lpim_x86_log3.png" height="152" border="1" width="770"&gt;&amp;nbsp;&lt;/div&gt;

&lt;p&gt;One issue you might come across is the case where you've triple-checked everything - you know you've given the service account LPIM rights in the Group Policy editor, you've set the trace flag and you've restarted SQL Server, but the error log still seems to indicate that LPIM is not set. Please verify that you've entered the trace flag argument correctly. The following two entries are not the same, and only the first is valid:&lt;/p&gt;

&lt;blockquote&gt;
&lt;table bgcolor="#eeeeee" cellpadding="0" cellspacing="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;pre style="padding:10px 20px;font-size:12px;font-family:consolas,lucida console,courier new,courier;-moz-background-inline-policy:continuous;"&gt;...\mastlog.ldf;-T845;&lt;br&gt; &lt;br&gt;...\mastlog.ldf; -T845;&lt;br&gt;&lt;font color="green"&gt;----------------^  this space may make you scream&lt;/font&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/blockquote&gt;


&lt;p&gt;Once you've verified that LPIM is up and running, let's go through the first few steps of SQL Server 2012 RC0 setup and see how the rule checks pan out. &lt;/p&gt;

&lt;p&gt;&lt;br&gt;&lt;font size="4"&gt;32-bit systems&lt;/font&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;b&gt;AWE and trace flag 845 both enabled&lt;/b&gt;&lt;br&gt;&lt;br&gt;If you have AWE enabled and the trace flag turned on, the AWE check fails:&lt;br&gt;&lt;br&gt;&lt;img src="http://bertrandaaron.files.wordpress.com/2012/02/lpim_x86_check1.png" height="203" border="1" width="416"&gt;&amp;nbsp;


&lt;blockquote style="margin-left:0px;"&gt;
&lt;table bgcolor="#eeeeee" cellpadding="0" cellspacing="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;div style="padding:10px 20px;font-size:12px;font-family:consolas,lucida console,courier new,courier;-moz-background-inline-policy:continuous;"&gt;---------------------------&lt;br&gt;Rule Check Result&lt;br&gt;---------------------------&lt;br&gt;Rule "Is AWE Enabled Check for x86 installations" failed.&lt;br&gt;&lt;br&gt;AWE is currently enabled on a 32-bit instance of SQL Server. This feature is no longer supported. &lt;br&gt;You must disable AWE before upgrading the instance.&lt;br&gt;---------------------------&lt;br&gt;OK&amp;nbsp;&amp;nbsp; &lt;br&gt;---------------------------&lt;br&gt;
&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/blockquote&gt;

&lt;/li&gt;

&lt;li&gt; &lt;b&gt;AWE disabled, trace flag 845 enabled&lt;/b&gt;&lt;br&gt;&lt;br&gt;If you disable AWE and restart the service, you will see the above message about using sp_configure in the error log, but both the AWE and the LPIM checks pass. This is because you didn't already have LPIM enabled, since AWE was not enabled. Even though you might have thought that you were using LPIM prior to the upgrade:


&lt;p&gt;&lt;img src="http://bertrandaaron.files.wordpress.com/2012/02/lpim_x86_check2.png" height="225" border="1" width="416"&gt;&amp;nbsp;&lt;/p&gt;

&lt;blockquote style="margin-left:0px;"&gt;
&lt;table bgcolor="#eeeeee" cellpadding="0" cellspacing="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;div style="padding:10px 20px;font-size:12px;font-family:consolas,lucida console,courier new,courier;-moz-background-inline-policy:continuous;"&gt;---------------------------&lt;br&gt;Rule Check Result&lt;br&gt;---------------------------&lt;br&gt;Rule "LPIM Check for x86 installations" passed.&lt;br&gt;&lt;br&gt;Lock Pages In Memory (LPIM) check for X86 succeeded.&lt;br&gt;---------------------------&lt;br&gt;OK&amp;nbsp;&amp;nbsp; &lt;br&gt;---------------------------
&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/blockquote&gt;

&lt;/li&gt;

&lt;li&gt;&lt;b&gt;AWE enabled, trace flag 845 disabled&lt;/b&gt;&lt;br&gt;&lt;br&gt; If you re-enable AWE and then turn off the 845 trace flag, you won't see any error messages in the error log, except for the "AWE is enabled" message. And you will see the same AWE rule fail upgrade you'll see if you have the trace flag turned on:&amp;nbsp;

&lt;p&gt;&lt;img src="http://bertrandaaron.files.wordpress.com/2012/02/lpim_x86_check1.png" height="203" border="1" width="416"&gt;&lt;/p&gt;

&lt;blockquote style="margin-left:0px;"&gt;
&lt;table bgcolor="#eeeeee" cellpadding="0" cellspacing="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;div style="padding:10px 20px;font-size:12px;font-family:consolas,lucida console,courier new,courier;-moz-background-inline-policy:continuous;"&gt;---------------------------&lt;br&gt;
Rule Check Result&lt;br&gt;
---------------------------&lt;br&gt;
Rule "Is AWE Enabled Check for x86 installations" failed.&lt;br&gt;
&lt;br&gt;
AWE
 is currently enabled on a 32-bit instance of SQL Server. This feature 
is no longer supported. &lt;br&gt;You must disable AWE before upgrading the 
instance.&lt;br&gt;
---------------------------&lt;br&gt;
OK&amp;nbsp;&amp;nbsp; &lt;br&gt;
---------------------------
&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/blockquote&gt;

&lt;/li&gt;

&lt;li&gt; &lt;b&gt;AWE and trace flag 845 both disabled&lt;/b&gt;&lt;br&gt;&lt;br&gt;If you then disable AWE and leave the trace flag disabled, you get the message in the log about not using all of the available memory, but again, like in case 2., both the AWE and LPIM upgrade rule checks pass:


&lt;p&gt;&lt;img src="http://bertrandaaron.files.wordpress.com/2012/02/lpim_x86_check2.png" height="225" border="1" width="416"&gt;&amp;nbsp;&lt;/p&gt;

&lt;blockquote style="margin-left:0px;"&gt;
&lt;table bgcolor="#eeeeee" cellpadding="0" cellspacing="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;div style="padding:10px 20px;font-size:12px;font-family:consolas,lucida console,courier new,courier;-moz-background-inline-policy:continuous;"&gt;---------------------------&lt;br&gt;
Rule Check Result&lt;br&gt;
---------------------------&lt;br&gt;
Rule "LPIM Check for x86 installations" passed.&lt;br&gt;
&lt;br&gt;
Lock Pages In Memory (LPIM) check for X86 succeeded.&lt;br&gt;
---------------------------&lt;br&gt;
OK&amp;nbsp;&amp;nbsp; &lt;br&gt;
---------------------------
&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/blockquote&gt;

&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;So for x86, I found no way to trigger an upgrade rule failure for the specific "LPIM Check for x86 installations" using RC0, but perhaps by RTM, this rule will also fail in addition to the AWE check in cases 1. and 3. above. In any case, I don't think it's that big of a deal since, if you are running x86, you won't be able to take advantage of AWE or LPIM anyway (more on that below). I think during the upgrade process you should be warned about this on any x86 machine with more than 4GB of RAM, regardless of your current AWE settings or trace flags. Not everyone is going to read the &lt;a href="http://technet.microsoft.com/en-us/library/ms144262%28SQL.110%29.aspx" title="http://technet.microsoft.com/en-us/library/ms144262%28SQL.110%29.aspx" target="_blank"&gt;discontinued engine features topic&lt;/a&gt; or attend one of my "What's New in SQL Server 2012?" presentations, and they may not realize later that when they change those settings they are not going to have any effect.&lt;/p&gt;

&lt;p&gt;Note that in SQL Server 2012, AWE is no longer supported. So it may very
 well be the case that you were expecting your AWE settings (in 
sp_configure, not in boot.ini) and LPIM to play well together after 
upgrading to SQL Server 2012, but this is not the case - SQL Server will
 no longer be able to see all of your memory, and this may have 
significant impact on your workload. Of course if you have a machine 
with 16GB of RAM and suddenly SQL Server will only see about 4GB, you 
might not be too impressed with the "upgrade" - hence the warnings. Note
 also that your experience with the RCs of SQL Server 2012 (all of which
 are Evaluation Edition) may yield different results than what will 
happen at RTM time (when you will be able to use a license key to 
specify "normal" editions like Standard and perform an actual end-to-end
 upgrade).&lt;br&gt; &lt;br&gt;&lt;/p&gt;
&lt;font size="4"&gt;
64-bit systems&lt;/font&gt;&lt;br&gt;
&lt;ol&gt;
&lt;li&gt;&lt;b&gt;Trace flag 845 enabled&lt;/b&gt;&lt;br&gt;&lt;br&gt;As expected, with both LPIM and TF845 enabled, the upgrade rule "LPIM Check for x64 Installations" passes (even though the "Using locked pages in memory" message does not appear in the error log). There is nothing to warn the user about because LPIM will continue to be honored:&lt;br&gt;&lt;br&gt;&lt;img src="http://bertrandaaron.files.wordpress.com/2012/02/lpim_x64_check2.png" height="203" border="1" width="416"&gt;


&lt;blockquote style="margin-left:0px;"&gt;
&lt;table bgcolor="#eeeeee" cellpadding="0" cellspacing="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;div style="padding:10px 20px;font-size:12px;font-family:consolas,lucida console,courier new,courier;-moz-background-inline-policy:continuous;"&gt;---------------------------&lt;br&gt;
Rule Check Result&lt;br&gt;
---------------------------&lt;br&gt;
Rule "LPIM Check for x64 installations" passed.&lt;br&gt;
&lt;br&gt;
Lock Pages In Memory (LPIM) check for X64 succeeded.&lt;br&gt;
---------------------------&lt;br&gt;
OK&amp;nbsp;&amp;nbsp; &lt;br&gt;
---------------------------
&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/blockquote&gt;

&lt;/li&gt;

&lt;li&gt;&lt;b&gt;Trace flag 845 disabled&lt;/b&gt;&lt;br&gt;&lt;br&gt;If we restart SQL Server without the trace flag, we no longer see the "Using locked pages for buffer pool" message in the error log, but the LPIM check still succeeds - even though we're on Standard Edition and the trace flag is not set (which is the reason behind the warning):&lt;br&gt;&lt;br&gt;&lt;img src="http://bertrandaaron.files.wordpress.com/2012/02/lpim_x64_check2.png" height="203" border="1" width="416"&gt;

&lt;blockquote style="margin-left:0px;"&gt;
&lt;table bgcolor="#eeeeee" cellpadding="0" cellspacing="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;div style="padding:10px 20px;font-size:12px;font-family:consolas,lucida console,courier new,courier;-moz-background-inline-policy:continuous;"&gt;---------------------------&lt;br&gt;Rule Check Result&lt;br&gt;---------------------------&lt;br&gt;Rule "LPIM Check for x64 installations" passed.&lt;br&gt;&lt;br&gt;Lock Pages In Memory (LPIM) check for X64 succeeded.&lt;br&gt;---------------------------&lt;br&gt;OK&amp;nbsp;&amp;nbsp; &lt;br&gt;---------------------------
&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/blockquote&gt;

This last case is the most concerning to me. The point of the warning is to let me know that I have the LPIM permission set for the service account, but that it won't be honored without the trace flag because I'm running Standard Edition. In this specific case, I think the LPIM upgrade rule should fail, even though my current configuration also prevents me from using LPIM.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;br&gt;&lt;font size="4"&gt;Conclusion&lt;/font&gt; &lt;br&gt;&lt;/p&gt;


&lt;p&gt;I quite sincerely hope this is my last 32-bit related blog post. For one, the x86 installation of SQL Server took at least five times longer than the x64 equivalent. x86 RIP!&lt;/p&gt;

&lt;p&gt;In any case, this is just one way Microsoft is helping to prevent customers from shooting off their own feet. Especially in the x86 case where their current workloads are dependent upon AWE; it needs to be clear to them that after the upgrade to SQL Server 2012, their configuration isn't what they think it is... &lt;br&gt;&amp;nbsp;&lt;br&gt;&lt;/p&gt;</description></item></channel></rss>