My brain isn’t working today. What are the exact steps to restore a database from a mysqldump file?
- Go to MySQL prompt
- Type in Mysql – u root –p NEWdatabasename < c:\temp\databasename_bkp.sql
I keep getting
[code]
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 626
Server version: 5.6.17 MySQL Community Server (GPL)
Copyright © 2000, 2014, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the current input statement.
mysql> mysql -u root -p empower < c:\temp\empower.sql
Outfile disabled.
ERROR:
Unknown command ‘\e’.
->[/code]