I took dump of a DB from the production. I want to import into my local database
mysql -u user_name -p db < db.sql
But it shows some error
ERROR 1005 (HY000) at line 25: Can't create table 'table_account' (errno:13)
And I am unable to import the table. This issue is occurring when I try to Import a particular database. Tried to import some other database. It works fine.
Could anybody solve this.
Thanks in Advance.
I am re posting the answer I mentioned in the comment for easy accessibility.
Command used -> mysql -u root -p lock-tables=false db < databackup.sql
Also the below mentioned link will give you more information link