I've exported a MySQL-sized 14GB database from a Windows OS computer and want to import it into MySQL from a computer running Ubuntu 14.04 OS
I used the following command to export the "data" database:
mysqldump -u root -p dados > teste.sql
After exporting I tried to import the same one into MySQL from the Ubuntu 14.04 OS using:
mysql -u root -p dados < teste.sql.
After a few minutes of execution the following error appears:
ERROR 1114 (HY000): The table "XXXXXXX" is full
How do you overcome this error?