I am having a mysqldump file which contains schema as well as data dump.
I need to import only database schema from my sqldump. I tried with following command:
mysql -uUSER -pPASSWORD < filename.sql
but of no help. it imports both schema as well as data.
How can I do it?
filename.sql? – Álvaro G. Vicario Jun 15 '11 at 10:03