美文网首页
Oracle 数据迁移

Oracle 数据迁移

作者: 黑白_a9aa | 来源:发表于2019-05-22 16:17 被阅读0次

    使用dump文件

    导出

    -- export
    exp user@ip/service_name file=xxx.dmp full=y
    

    导入

    • 创建表空间
    • 创建用户
    • 数据导入
    创建表空间
    create tablespace tablespace_name
    datafile datefile_name
    size 2000M;
    
    创建用户
    create user user_name
    identified by password
    default tablespace tablespace_name;
    
    grant role to user_name
    
    数据导入
    imp user/password@ip/service_name file=local_file full=y;
    

    过程中遇到的问题

    问题:EXP-00091: Exporting questionable statistics.
    方案:配置本地环境变量NLS_LANG
    操作:

    • 数据库。查询当前数据库使用的语言
    select userenv('language') from dual;
    
    • 配置本地环境变量
    export NLS_LANG=ENGLISH_CHINA.ZHS32GB18030
    

    相关文章

      网友评论

          本文标题:Oracle 数据迁移

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