美文网首页
mysql 导入导出

mysql 导入导出

作者: darebeat | 来源:发表于2016-09-06 16:05 被阅读8次

    1.导出

    mysqldump -h hostname -uroot dbname >dbname_$(date +"%Y%m%d").sql -p
    

    2.导入

    mysql -uroot dbname<dbname_$(date +"%Y%m%d").sql -p
    

    3.MySQL 数据字典导出脚本

    SELECT TABLE_NAME
    ,COLUMN_NAME
    ,column_type
    ,is_nullable
    ,column_default
    ,column_comment
    ,column_key
    ,extra
    FROM information_schema.columns WHERE table_schema='dw_prod'
    ORDER BY 1 ASC;
    

    相关文章

      网友评论

          本文标题:mysql 导入导出

          本文链接:https://www.haomeiwen.com/subject/himdettx.html