zoukankan      html  css  js  c++  java
  • spm完成dmp在windows系统上导入详细过程

    --查询dmp字符集
    cat spmprd_20151030.dmp |od -x|head -1|awk '{print $2 $3}'|cut -c 3-6
    select nls_charset_name(to_number('0345','xxxx')) from dual;
    
    spm完成dmp在windows系统上导入详细过程
    
    create tablespace SPMSIT datafile 'D:DATASDATA01.dbf' size 200m autoextend on next 10m maxsize unlimited;
    
    create tablespace DATA01 datafile 'D:DATASDATA01.dbf' size 200m autoextend on next 10m maxsize unlimited;
    
    create user spmdev
      identified by "spmdev"
      default tablespace SPMSIT
      temporary tablespace TEMP
      profile DEFAULT;
      
    grant connect,resource,dba to spmdev;
      
    create user queryuser
      identified by "queryuser"
      default tablespace SPMSIT
      temporary tablespace TEMP
      profile DEFAULT;
      
    create user spmquery
      identified by "spmquery"
      default tablespace SPMSIT
      temporary tablespace TEMP
      profile DEFAULT;
    
    create user spmprd
      identified by "spmprd"
      default tablespace SPMSIT
      temporary tablespace TEMP
      profile DEFAULT;
      
    环境变量设置导入session字符集
    变量名:NLS_LANG
    变量值:SIMPLIFIED CHINESE_CHINA.ZHS16GBK
    
    imp spmdev/spmdev@orcl fromuser=spmprd touser=spmdev file=D:datasspmprd_20151030.dmp IGNORE=Y
    
    --导入数据库tns
    BJ_FJEPMS_DEV=
      (DESCRIPTION=
        (ADDRESS=
          (PROTOCOL=TCP)
          (HOST=xxxxxxxxxxxx)
          (PORT=1521)
        )
        (CONNECT_DATA=
          (SID=orcl)
        )
      )
  • 相关阅读:
    Java使用google开源工具Thumbnailator实现图片压缩
    nginx基本配置
    CopyPropertis
    微服务(Microservices )简介
    jQuery ajax()使用serialize()提交form数据
    $.getJSON( )的使用方法简介
    理解 CSS 的 z-index 属性
    JS中的call()和apply()方法
    CSS文字换行详细解说
    如何实现JS函数的重载
  • 原文地址:https://www.cnblogs.com/rigid/p/4939256.html
Copyright © 2011-2022 走看看