myth
myth

Reputation: 1

Store 1000 values in singlecolumn of single table in MySQL

I am very new to MySQL. I want to store 1000 or more values into a table of single column. After saving 100 values I got this:

mysql 139 storage engine error..

Upvotes: 0

Views: 171

Answers (1)

georgepsarakis
georgepsarakis

Reputation: 1957

Are you using the InnoDB or MyISAM engine? This error normally means that you exceeded the allowed row length. Please post your table structure here.

You can do that from a command line client by issuing the command:

SHOW CREATE TABLE yourtable;

Upvotes: 1

Related Questions