how does one rename a schema in MySQL -


Hello I am using mysql 5.0.x

How do I change the name of a schema? Under 5.0, you need to dump the database and it needs to be reloaded with a new name in a new database. If you upgrade to 5.1, you can see and use the RENAME DATABASE command.


Comments