restoring database
Hi!Can somene help me with this.
I have backup of all mysql databases called alldatabases.sql
I got it like this
mysqldump -A > alldatabases.sql
I would like to restore just one database called one_databese
How Can I do that?
I tried
mysql one_databese < alldatabases.sql
but in that way all databases are restored, not just "one_database".
Can someone tell me how can I restore just "one_database" from "alldatabases.sql"?
Thanks. Regards.