I have a MySQL InnoDB table on a RedHat Enterprise Linux 4 server, and after trying to import a database previously backed up using mysqldump
I got a "the table is full" error.
The table currently has 463,062 rows in it, and the ibdata1
file on disk is currently 3.37Gb. A quick "SHOW VARIABLES;
" shows that the innodb_data_file_path
is set to ibdata1:10M:autoextend
, and the filesystem is ext3, so I'd expect it to have plenty of room left to grow.
Any ideas how I can go about establishing exactly what the problem is?