zoukankan      html  css  js  c++  java
  • mysql导入、导出 ( 带视图)

    1创建账号授权

    grant all privileges on jenkinsddbes.* to 'jenkinsddbes'@'%' identified by '1iN@Da12tA&*ba33gf8';


    2、导出

    mysqldump -u root -p jenkinsddbes > 2018-06-07.jenkinsddbes.sql


    3、导入

    [root@host-10-1-1-163 ~]# mysql -h 10.1.1.174 -u root -pzihoa@5tgb
    mysql: [Warning] Using a password on the command line interface can be insecure.
    Welcome to the MySQL monitor. Commands end with ; or g.
    Your MySQL connection id is 2593
    Server version: 5.6.39-log MySQL Community Server (GPL)

    Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.

    Oracle is a registered trademark of Oracle Corporation and/or its
    affiliates. Other names may be trademarks of their respective
    owners.

    Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.

    mysql> create database jenkinsddbes;
    [root@host-10-1-1-204 ~]# mysql -u root -p jenkinsddbes < jenkinsddbes.sql

    注意:导入数据库默然是把视图也给到进来了,

    4、给视图授权


    grant create view on jenkins.* to 'jenkinsddbes'@'%';
    grant show view on jenkins.* to jenkinsddbes@'%';

    GRANT ALL PRIVILEGES ON 用户名.* TO 数据库名@'%' IDENTIFIED BY '数据库密码';

    flush privileges;

    5、更改视图的所有者

    进入navicat-设计视图-高级-定义者:修改成jenkinsddbes@%

  • 相关阅读:
    Java面试:用set集合的时候,重写过hashcode()和equal()方法吗?有什么作用?
    Bootstrap起步
    Java NIO
    Dobbo和SpringCloud区别
    Java虚拟机类加载机制和双亲委派模型
    继承和组合的特点和区别
    LinkedList和ArrayList底层原理
    聚集索引和非聚集索引
    Stream和迭代器的区别
    悲观锁和乐观锁
  • 原文地址:https://www.cnblogs.com/effortsing/p/10011274.html
Copyright © 2011-2022 走看看