码迷,mamicode.com
首页 > 数据库 > 详细

mysql5.7.1.log数据库改名

时间:2020-07-04 17:05:12      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:creat   格式化   sql   test   echo   --   net   格式   参数   

1.a -->b

#!/bin/bash
#先判断新数据库是否存在,要是不存在就创建。
#列出老数据库下都有那些表,其中N和s参数起到的作用是格式化,有点类似于Oracle下sqlplus里的pag
#用for循环来rename。

/bin/mysql -uroot -pjjjjj -h10.0.0.22 -e create database if not exists wxqyh_test_0704
list_table=$(/bin/mysql -uroot -pjjjj -h10.0.0.22 -Nse "select table_name from information_schema.TABLES where TABLE_
SCHEMA=wxqyh_test‘")

for table in $list_table
do
    #echo $table
    /bin/mysql -uroot -pjjjj -h10.0.0.22  -e "rename table wxqyh_test.$table to wxqyh_test_0704.$table"
done
[root@VM_0_134_centos 0704]# 

 参考:http://blog.itpub.net/20893244/viewspace-2147259/

mysql5.7.1.log数据库改名

标签:creat   格式化   sql   test   echo   --   net   格式   参数   

原文地址:https://www.cnblogs.com/hixiaowei/p/13235326.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!