 




<?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; Error Message</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/sql-server/tag/error-message/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>CPU Affinity Mask and virtualizating SQL Servers</title>
		<link>http://itknowledgeexchange.techtarget.com/sql-server/cpu-affinity-mask-and-virtualizating-sql-servers/</link>
		<comments>http://itknowledgeexchange.techtarget.com/sql-server/cpu-affinity-mask-and-virtualizating-sql-servers/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 14:00:51 +0000</pubDate>
		<dc:creator>Denny Cherry</dc:creator>
				<category><![CDATA[Error Message]]></category>
		<category><![CDATA[Grant Fritchey]]></category>
		<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server 2000]]></category>
		<category><![CDATA[SQL Server 2005]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/sql-server/cpu-affinity-mask-and-virtualizating-sql-servers/</guid>
		<description><![CDATA[If you have physical SQL Servers that you plan on moving into a virtual environment you&#8217;ll want to double check your affinity mask settings before actually moving the machine from a physical server to a VM when using P2V software.  The reason for this is that if the affinity mask is set for specific CPUs [...]]]></description>
				<content:encoded><![CDATA[<p>If you have physical SQL Servers that you plan on moving into a virtual environment you&#8217;ll want to double check your affinity mask settings before actually moving the machine from a physical server to a VM when using P2V software.  The reason for this is that if the affinity mask is set for specific CPUs and the number of CPU cores changes the affinity mask won&#8217;t be correct and you won&#8217;t be able to get into the advanced settings of sp_configure without getting an invalid settings error like that shown below.</p>
<blockquote><p>Msg 5832, Level 16, State 1, Line 1<br />
The affinity mask specified does not match the CPU mask on this system.</p></blockquote>
<p>If you haven&#8217;t P2V&#8217;ed the system before you do simply change the various affinity masks to 0 which sets them for all processors.  If you have P2V&#8217;ed the system your best option is to log into the SQL Server using the dedicated admin connection and manually change the value in the system table by using the following query.</p>
<pre class="brush: sql; title: ; notranslate">update sys.configurations
set value=0
Where Name = 'affinity mask'</pre>
<p>Hopefully you never run across this problem, but if you do there&#8217;s the solution for you.</p>
<p>UPDATE: Paul Randal reminded me that CPU Affinity has been deprecated as of SQL Server 2008 R2 so you&#8217;ll probably not want to be configuring the CPU Affinity anyway.</p>
<p>Denny</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/sql-server/cpu-affinity-mask-and-virtualizating-sql-servers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Reading the Error Messages is key</title>
		<link>http://itknowledgeexchange.techtarget.com/sql-server/reading-the-error-messages-is-key/</link>
		<comments>http://itknowledgeexchange.techtarget.com/sql-server/reading-the-error-messages-is-key/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 11:00:57 +0000</pubDate>
		<dc:creator>Denny Cherry</dc:creator>
				<category><![CDATA[Error Message]]></category>
		<category><![CDATA[Tech support]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/sql-server/?p=275</guid>
		<description><![CDATA[I have a gripe that I need to air. I can&#8217;t stress this enough.  Actually reading the error messages when there is a problem is key to solving the problems. Most of the time (I admit, not all the time) SQL Server will give you some very useful information about what to do next. Recently [...]]]></description>
				<content:encoded><![CDATA[<p>I have a gripe that I need to air.</p>
<p>I can&#8217;t stress this enough.  Actually reading the error messages when there is a problem is key to solving the problems.</p>
<p>Most of the time (I admit, not all the time) SQL Server will give you some very useful information about what to do next.</p>
<p><span id="more-275"></span>Recently someone posted the following error message and asked how to resolve it.</p>
<p><code>Msg 682, Level 22, State 148, Line 1<br />
Internal error. Buffer provided to read column value is too small. Run DBCC CHECKDB to check for any corruption.</code></p>
<p>Now just by reading this error figuring out the next step should be pretty easy.  Run DBCC CHECKDB and post that information, or better yet after it runs and tells you that there is corruption in your database, follow the instructions that it gives you.  Why should you do this?  Well because when you post this error message on a forum you will be told to go and run DBCC CHECKDB and report back.</p>
<p>Those that answer questions online don&#8217;t have any magical power to know what&#8217;s happening on your SQL Server.  If you don&#8217;t read the errors and follow what they tell you, we are not going to be able to help any beyond that.</p>
<p>My rant now ends.</p>
<p>Denny</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/sql-server/reading-the-error-messages-is-key/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
