vote up 4 vote down star

I'm looking for a way to alias a database in MySQL. The reason is to be able to rename a live, production database without bringing the system down. I figure I can alias the database to the new name, change and deploy the code connecting to it at my leisure, and eventually remove the old alias.

If there's a better way to accomplish this please let me know.

flag

50% accept rate
DBI's proxying feature may be of use, if MySQL does not have something built in. – jrockway Aug 19 at 22:50
@jrockway You will be horrified to learn I'm supporting a PHP app. – Schwern Aug 20 at 0:13

2 Answers

vote up 2 vote down check

Symbolic links.

link|flag
i'd never thought of that! You (well, not you, Bill), forget that databases are just files. – nickf Aug 19 at 23:34
Thanks! I'd considered that but didn't know if it was safe. – Schwern Aug 20 at 0:09
vote up 0 vote down

INNODB won't work with filesystem symlinks.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.