继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

MySQL中修改库名的操作教程

linux快速入门培训
关注TA
已关注
手记 266
粉丝 31
获赞 120

MySQL在5.1引入了一个rename database操作,但在MySQL5.1.23后又不支持这个命令。可以说是一个实验性的功能,没有在生产中支持过(mysql-5.1 release在mysql-5.1.30),那么生产中我们有时为了追求完美需要改一下库名。怎么操作呢?
这里提供一个变通的方法。
1. 创建出新库名:

?

123mysql>create database db_v2;  mysql>create database db_v2;

2.生成rename语句,从olddb里迁移,我这里olddb里sbtest;

?

123mysql>select concat("rename table ",table_schema,".",table_name," to db_v2.",table_name,";") into outfile '/tmp/rename_to_db_v2.sql' from information_schema.tables where table_schema='sbtest';  mysql>select concat("rename table ",table_schema,".",table_name," to db_v2.",table_name,";") into outfile '/tmp/rename_to_db_v2.sql' from information_schema.tables where table_schema='sbtest';

3.执行生成的sql

?

123mysql>source /tmp/rename_to_db_v2.sql  mysql>source /tmp/rename_to_db_v2.sql

就这么简单可以搞定了。
Good luck!

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP