• 注册
  • WordPress后台-外观-小工具 进行配置小工具

    BBS 使用教程 关注:0 内容:2

    mysql过滤某些库导出SQL备份数据

  • 查看作者
  • 打赏作者
  • 拉黑名单
  • Lv.14
    十月你好
    mysql过滤information_schema|mysql|performance_schema导出
    mysql -uroot -h 127.0.0.1  -ptest123123 -e 'show databases;'|grep -E -v "Database|information_schema|mysql|performance_schema" |xargs mysqldump -uroot -h 127.0.0.1  -ptest123123 --databases > 3.sql
    
    
    mysql过滤information_schema|mysql|performance_schema导出
    #!/bin/bash  
    i=`mysql -uroot -h 127.0.0.1  -ptest123123 -e 'show databases;'|grep -E -v "Database|information_schema|mysql|performance_schema"`  
    for k in $i  
        do mysqldump -uroot -h 127.0.0.1  -ptest123123 $k >> db.$k.sql  
    done 
    
    
    mysql过滤information_schema|mysql|performance_schema导入
    i=`cat db.txt`  
    for k in $i  
        do 
    mysql -uroot -h 127.0.0.1  -ptest123123 -e 'create database "$k";'
    mysql -u root -h 127.0.0.1  -ptest123123 $k <  db.$k.sql  
    
    done 
    
    创建库
    create database 库名;  
    
    
    给权限
    GRANT all ON *.* TO test111@'127.0.0.1' IDENTIFIED BY 'test123123';  
    GRANT all ON *.* TO root@'127.0.0.1' with grant option;

    请登录之后再进行评论

    登录
  • 做任务
  • 实时动态
  • 偏好设置
  • 帖子间隔 侧栏位置: