database / mysql / renameRenomear banco de dados mysql rapidamente# create the new dbmysqladmin create NEW_NAME# dump out the old db into new dbmysqldump OLD_NAME | mysql NEW_NAME# ...check the new one is ok...# drop the old dbmysqladmin drop OLD_NAME