Hi
I have a database named textile.I have 10 tables in it.I have used the following command to backup my database as SQL Script file,
mysqldump -u sa -p textile>textile .sql
The above command is successful and i have dropped my textile database.
Now i have created new database with same name textile and i used the following command to restore my database,
mysqldump -u sa -p textile<textile .sql
The above command also successfully working but when i use the database and try to access any table,it is showing error that the table doesn't exist.
I want all the tables and its data along with my backup in order to restore.
Please help in this issue...and direct me accordingly.
Thanks in advance...
I have a database named textile.I have 10 tables in it.I have used the following command to backup my database as SQL Script file,
mysqldump -u sa -p textile>textile .sql
The above command is successful and i have dropped my textile database.
Now i have created new database with same name textile and i used the following command to restore my database,
mysqldump -u sa -p textile<textile .sql
The above command also successfully working but when i use the database and try to access any table,it is showing error that the table doesn't exist.
I want all the tables and its data along with my backup in order to restore.
Please help in this issue...and direct me accordingly.
Thanks in advance...
Comment