<?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: MySQL Error 1170 (42000): BLOB/TEXT Column Used in Key Specification Without a Key Length</title>
	<atom:link href="http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/</link>
	<description>Living Digitally and Electronically</description>
	<lastBuildDate>Mon, 23 Nov 2009 10:43:50 +0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Eli Manobella</title>
		<link>http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/comment-page-1/#comment-572549</link>
		<dc:creator>Eli Manobella</dc:creator>
		<pubDate>Thu, 30 Apr 2009 14:32:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/#comment-572549</guid>
		<description>Thank you for the post.
I need a key that is longer then 256. 

What can I do? 

googling it for the past 3 hours with no luck...
(Paco Zarabozo comment did not work for me)</description>
		<content:encoded><![CDATA[<p>Thank you for the post.<br />
I need a key that is longer then 256. </p>
<p>What can I do? </p>
<p>googling it for the past 3 hours with no luck&#8230;<br />
(Paco Zarabozo comment did not work for me)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Preaching to the UTF8 converted at hontou ni sou omou?</title>
		<link>http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/comment-page-1/#comment-547531</link>
		<dc:creator>Preaching to the UTF8 converted at hontou ni sou omou?</dc:creator>
		<pubDate>Sat, 13 Dec 2008 14:20:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/#comment-547531</guid>
		<description>[...] I ran into some problems, I back-pedalled to square one. Thankfully my backup restored the Latin1 database without any [...]</description>
		<content:encoded><![CDATA[<p>[...] I ran into some problems, I back-pedalled to square one. Thankfully my backup restored the Latin1 database without any [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paco Zarabozo</title>
		<link>http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/comment-page-1/#comment-538318</link>
		<dc:creator>Paco Zarabozo</dc:creator>
		<pubDate>Wed, 29 Oct 2008 02:16:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/#comment-538318</guid>
		<description>Well, here&#039;s another solution. You can actually specify the key length for your index while keeping your field as longtext. This is an example:

create table messages (
	id int(20) not null auto_increment,
	message longtext,
	index (message(996), id)
);

desc messages;
show index from messages;

996 is the maximium key length mySQL has accepted for me.

Cheers,

Paco</description>
		<content:encoded><![CDATA[<p>Well, here&#8217;s another solution. You can actually specify the key length for your index while keeping your field as longtext. This is an example:</p>
<p>create table messages (<br />
	id int(20) not null auto_increment,<br />
	message longtext,<br />
	index (message(996), id)<br />
);</p>
<p>desc messages;<br />
show index from messages;</p>
<p>996 is the maximium key length mySQL has accepted for me.</p>
<p>Cheers,</p>
<p>Paco</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/comment-page-1/#comment-537951</link>
		<dc:creator>David</dc:creator>
		<pubDate>Mon, 27 Oct 2008 11:50:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/#comment-537951</guid>
		<description>Thanks a lot!</description>
		<content:encoded><![CDATA[<p>Thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marius Vilaia</title>
		<link>http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/comment-page-1/#comment-533803</link>
		<dc:creator>Marius Vilaia</dc:creator>
		<pubDate>Sun, 05 Oct 2008 19:50:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/#comment-533803</guid>
		<description>Thank you very much. I had this problem and you were a life saver!</description>
		<content:encoded><![CDATA[<p>Thank you very much. I had this problem and you were a life saver!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reza</title>
		<link>http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/comment-page-1/#comment-470666</link>
		<dc:creator>Reza</dc:creator>
		<pubDate>Thu, 06 Mar 2008 20:15:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/#comment-470666</guid>
		<description>Thanks, very good defined</description>
		<content:encoded><![CDATA[<p>Thanks, very good defined</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamie Slater</title>
		<link>http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/comment-page-1/#comment-467384</link>
		<dc:creator>Jamie Slater</dc:creator>
		<pubDate>Fri, 22 Feb 2008 19:40:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/#comment-467384</guid>
		<description>Thanks for the post. Very helpful.</description>
		<content:encoded><![CDATA[<p>Thanks for the post. Very helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Hardy</title>
		<link>http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/comment-page-1/#comment-466856</link>
		<dc:creator>Ben Hardy</dc:creator>
		<pubDate>Tue, 19 Feb 2008 18:45:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/#comment-466856</guid>
		<description>Thanks! Very useful post.</description>
		<content:encoded><![CDATA[<p>Thanks! Very useful post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Felix</title>
		<link>http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/comment-page-1/#comment-391002</link>
		<dc:creator>Felix</dc:creator>
		<pubDate>Thu, 30 Aug 2007 10:33:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydigitallife.info/2007/07/09/mysql-error-1170-42000-blobtext-column-used-in-key-specification-without-a-key-length/#comment-391002</guid>
		<description>Thanks for putting this up. I didn&#039;t get the error and you saved me a lot o frustration. I&#039;d put you in the &#039;Goog people&#039; category anytime ;-)</description>
		<content:encoded><![CDATA[<p>Thanks for putting this up. I didn&#8217;t get the error and you saved me a lot o frustration. I&#8217;d put you in the &#8216;Goog people&#8217; category anytime <img src='http://www.mydigitallife.info/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
