<?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 Row Overflow Data Explanation</title>
	<atom:link href="http://blog.sqlauthority.com/2007/06/23/sql-server-2005-row-overflow-data-explanation/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/06/23/sql-server-2005-row-overflow-data-explanation/</link>
	<description>Notes of a SQL Server MVP and Database Administrator</description>
	<lastBuildDate>Sat, 21 Nov 2009 05:54:09 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: SQLAuthority News - Best Articles on SQLAuthority.com Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2007/06/23/sql-server-2005-row-overflow-data-explanation/#comment-47224</link>
		<dc:creator>SQLAuthority News - Best Articles on SQLAuthority.com Journey to SQL Authority with Pinal Dave</dc:creator>
		<pubDate>Tue, 24 Feb 2009 12:09:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/23/sql-server-2005-row-overflow-data-explanation/#comment-47224</guid>
		<description>[...] SQL SERVER - 2005 Row Overflow Data Explanation [...]</description>
		<content:encoded><![CDATA[<p>[...] SQL SERVER &#8211; 2005 Row Overflow Data Explanation [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: suneeeee</title>
		<link>http://blog.sqlauthority.com/2007/06/23/sql-server-2005-row-overflow-data-explanation/#comment-40014</link>
		<dc:creator>suneeeee</dc:creator>
		<pubDate>Thu, 10 Jul 2008 12:08:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/23/sql-server-2005-row-overflow-data-explanation/#comment-40014</guid>
		<description>i had a problem to store more than 8000 characters in msssql 2005. i had used varchar(max), text  and all possible datatypes but could not find the solution. can u please give me solution???</description>
		<content:encoded><![CDATA[<p>i had a problem to store more than 8000 characters in msssql 2005. i had used varchar(max), text  and all possible datatypes but could not find the solution. can u please give me solution???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nsiku Banda</title>
		<link>http://blog.sqlauthority.com/2007/06/23/sql-server-2005-row-overflow-data-explanation/#comment-35953</link>
		<dc:creator>Nsiku Banda</dc:creator>
		<pubDate>Tue, 29 Apr 2008 16:33:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/23/sql-server-2005-row-overflow-data-explanation/#comment-35953</guid>
		<description>Just shows how cheeky Microsoft is to want to come up with different versions of SQL. I do not see why the row field limitations to 8060 bytes in SQL Server 2000 had to wait for the release of the 2005 version??

It would be nice to &quot;truncate&quot; microsoft from our lives forever, but I am not quite sure how!</description>
		<content:encoded><![CDATA[<p>Just shows how cheeky Microsoft is to want to come up with different versions of SQL. I do not see why the row field limitations to 8060 bytes in SQL Server 2000 had to wait for the release of the 2005 version??</p>
<p>It would be nice to &#8220;truncate&#8221; microsoft from our lives forever, but I am not quite sure how!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Lake</title>
		<link>http://blog.sqlauthority.com/2007/06/23/sql-server-2005-row-overflow-data-explanation/#comment-33901</link>
		<dc:creator>Michael Lake</dc:creator>
		<pubDate>Fri, 22 Feb 2008 11:59:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/23/sql-server-2005-row-overflow-data-explanation/#comment-33901</guid>
		<description>because Varchar has a maximum size a 1kb, 
thus 255 characters. each character is 2 bytes,
plus 2 bytes as a header.

and a text type is an array of varchars,
so think of each line sa a varchar, and there are many lines.

keep in mind that the maximum row size is 8kb.
there is method of calculating field sizes, google it for more info.

I hope this helps</description>
		<content:encoded><![CDATA[<p>because Varchar has a maximum size a 1kb,<br />
thus 255 characters. each character is 2 bytes,<br />
plus 2 bytes as a header.</p>
<p>and a text type is an array of varchars,<br />
so think of each line sa a varchar, and there are many lines.</p>
<p>keep in mind that the maximum row size is 8kb.<br />
there is method of calculating field sizes, google it for more info.</p>
<p>I hope this helps</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rpd</title>
		<link>http://blog.sqlauthority.com/2007/06/23/sql-server-2005-row-overflow-data-explanation/#comment-25409</link>
		<dc:creator>rpd</dc:creator>
		<pubDate>Tue, 11 Dec 2007 17:56:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/23/sql-server-2005-row-overflow-data-explanation/#comment-25409</guid>
		<description>I have a table in SQL Server 2000 with two text fields. I&#039;d like to change the two text fields to varchar(8000), but I get this error:

- Unable to modify table.  
ODBC error: [Microsoft][ODBC SQL Server Driver][SQL Server]Cannot create a row of size 14844 which is greater than the allowable maximum of 8060.

I&#039;m not concerned about data truncation; that&#039;s fine for my situation. I don&#039;t understand, though, how a table can allow two text fields but not two varchar fields. Do you know if there is a way around this?

Thanks in advance! This site is a really great resource.</description>
		<content:encoded><![CDATA[<p>I have a table in SQL Server 2000 with two text fields. I&#8217;d like to change the two text fields to varchar(8000), but I get this error:</p>
<p>- Unable to modify table.<br />
ODBC error: [Microsoft][ODBC SQL Server Driver][SQL Server]Cannot create a row of size 14844 which is greater than the allowable maximum of 8060.</p>
<p>I&#8217;m not concerned about data truncation; that&#8217;s fine for my situation. I don&#8217;t understand, though, how a table can allow two text fields but not two varchar fields. Do you know if there is a way around this?</p>
<p>Thanks in advance! This site is a really great resource.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
