restoring a MySQL database
问题 I have created a file named ab.sql using the mysqldump utility of a database named library. It worked fine. Now i am trying to restore it using mysqlimport. My database already exists. But i want to override it. I am using the command mysqlimport -uroot -p**** library D:/ab.sql in the command line but it gives an error that says, mysqlimport: Error: 1146, Table 'library.ab' doesn't exist, when using table: ab desperately need help. 回答1: mysqlimport reads rows from a text file into a database.