up vote 5 down vote favorite
share [g+] share [fb]

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.

link|improve this question

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

2 Answers

up vote 3 down vote accepted

Symbolic links.

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

INNODB won't work with filesystem symlinks.

link|improve this answer
I haven't tried it to confirm, but it might work if you use InnoDB with the file-per-table option, instead of a shared tablespace. – Bill Karwin Oct 5 '10 at 15:45
feedback

Your Answer

 
or
required, but never shown

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