Reputation: 89
I received the following message while working while working with a pre-existing existing database and adding some new tables Error Msg
#1030 - Got error -1 from storage engine
Upvotes: 1
Views: 10656
Reputation: 2004
You will get this error if /etc/my.cnf you have innodb_force_recovery turned on. Comment out that option, restart the server and try the data import again.
Upvotes: 1
Reputation: 6252
This error is mainly due to the low memory which means that you don't have enough memory for allocating to your table or database.
Please have a look here.It would be helpful.
Upvotes: 2
Reputation: 2510
This usually means you've ran out of disk space. Check using df -h
and delete any large log files or other files taking up a lot of space.
Failing that, check your memory usage.
Upvotes: 2