3
I exported a database with a 14GB Mysql size from a Windows OS computer and I intend to import it into Mysql from a Ubuntu 14.04 OS computer
I used the following command to export the database "data":
mysqldump -u root -p dados > teste.sql
After exported I tried to import the same in Mysql from Ubuntu 14.04 OS computer through:
mysql -u root -p dados < teste.sql.
After few minutes of execution the following error appears:
ERROR 1114 (HY000): The table "XXXXXXX" is full
How to overcome this error?