I am trying to import DB dump with following command.
mysql -u doadmin -p -f tetdb < test.sql
then I am getting all imported table name and column warped by Backtick (´).
´test_cache_menu´ ´test_cache_data´
My test.sql is too big (40GB) so I can't edit the file.
use these commands :
1) login to mysql by:
2) create a database in which you want to import by
3) use created database
4) then export test.sql to your database :
that's all