mysql 重命名数据库
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 重命名数据库相关的知识,希望对你有一定的参考价值。
方法一
mysql -s -N -uroot -p
set sql_log_bin=0;
select concat(‘create table ‘, TABLE_NAME,‘ like xxx.‘,TABLE_NAME,‘;‘) from information_schema.tables where TABLE_SCHEMA=‘xxx‘;
select concat(‘insert into ‘, TABLE_NAME,‘ select * from xxx.‘,TABLE_NAME,‘;‘) from information_schema.tables where TABLE_SCHEMA=‘xxx‘;
set sql_log_bin=1;
方法二 mysqldump
mysqldump -uuser -ppass -hhost -Pport--single-transaction old_db >old_db.sql
mysql -uuser -ppass -hhost -Pport -e "create database new_db"
mysql -uuser -ppass -hhost -Pport new_db < old_db.sql
mysql -uuser -ppass -hhost -Pport -e "drop database old_db"
以上是关于mysql 重命名数据库的主要内容,如果未能解决你的问题,请参考以下文章