I'm trying to import sql to my database.
I'm using Ubuntu OS.
Here is an error:
david@david-VirtualBox:~$ mysql -u root -p test_project < db.sql
Enter password:
ERROR 1030 (HY000) at line 25: Got error 168 from storage engine`
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| sys |
| testBase |
| test_project |
+--------------------+
6 rows in set (0,05 sec)
mysql> use test_project;
Database changed
mysql> show tables;
Empty set (0,00 sec)
Any ideas how to fix it? I've tried to google this problem, but couldn't find anything useful.
Thank you for your answers.