zoukankan      html  css  js  c++  java
  • [转]oracle密码特殊字符在imp、exp里的使用

    http://space.itpub.net/9252210/viewspace-594453
    今天在做数据导出的时候,由于用户名的密码使用的是特殊字符,所以遇到了错误代码:“EXP-00056: 遇到 ORACLE 错误 12154”,网上查找原因,需要用引号扩起来,但是os不同,方式也不同:

        windows os: exp username/"""password"""@devdb --3个双引号扩密码

        linux/unix os: exp 'username/"password"@devdb' --1个双引号扩密码,1个单引号扩全部

        实验结果如下:
    1.创建带有特殊字符密码的用户
    C:\Documents and Settings\Home>sqlplus /nolog
    SQL*Plus: Release 10.2.0.1.0 - Production on 星期四 5月 7 17:37:36 2009
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    SQL> connsys/oracle@devdbas sysdba
    已连接。
    SQL> create user exp identified by "12345!@#$%";
    用户已创建。
    SQL> grant connect, resource to exp;
    授权成功。
    SQL> conn exp/"12345!@#$%"@devdb2
    已连接。
    SQL> create table table1 as select * from dual;
    表已创建。
    SQL> exit
    2.windows os导出测试
    C:\Documents and Settings\Home>expexp/12345!@#$%@devdbfile=c:\exp.dmp wner=exp
    Export: Release 9.2.0.1.0 - Production on 星期四 5月 7 17:39:42 2009
    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
    EXP-00056: 遇到 ORACLE 错误 12154
    ORA-12154: TNS: 无法处理服务名
    EXP-00000: 导出终止失败
    C:\Documents and Settings\Home>exp exp/"12345!@#$%"@devdb2file=c:\exp.dmp wner=exp
    Export: Release 9.2.0.1.0 - Production on 星期四 5月 7 17:39:57 2009
    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
    EXP-00056: 遇到 ORACLE 错误 12154
    ORA-12154: TNS: 无法处理服务名
    EXP-00000: 导出终止失败
    C:\Documents and Settings\Home>exp exp/"""12345!@#$%"""@devdb2file=c:\exp.dmp wner=exp
    Export: Release 9.2.0.1.0 - Production on 星期四 5月 7 17:41:54 2009
    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
    连接到: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, Real Application Clusters, OLAP, Data Mining
    and Real Application Testing options
    已导出 ZHS16GBK 字符集和 AL16UTF16 NCHAR 字符集
    . 正在导出 pre-schema 过程对象和操作
    . 正在导出用户 EXP 的外部函数库名称
    . 导出 PUBLIC 类型同义词
    . 导出私有类型同义词
    . 正在导出用户 EXP 的对象类型定义
    即将导出 EXP 的对象 ...
    . 正在导出数据库链接
    . 正在导出序号
    . 正在导出群集定义
    . 即将导出 EXP 的表通过常规路径 ...
    . . 正在导出表                          TABLE1          1 行被导出
    . 正在导出同义词
    . 正在导出视图
    . 正在导出存储的过程
    . 正在导出运算符
    . 正在导出引用完整性约束条件
    . 正在导出触发器
    . 正在导出索引类型
    . 正在导出位图, 功能性索引和可扩展索引
    . 正在导出后期表活动
    . 正在导出实体化视图
    . 正在导出快照日志
    . 正在导出作业队列
    . 正在导出刷新组和子组
    . 正在导出维
    . 正在导出 post-schema 过程对象和操作
    . 正在导出统计
    在没有警告的情况下成功终止导出。

    3.linux/unix os导出测试
    [oracle@rac2 ~]$ expexp/12345!@#$%@devdbfile=./exp.dmp wner=exp
    -bash:!@#$%@devdb: event not found
    [oracle@rac2 ~]$ exp exp/"""12345!@#$%"""@devdbfile=./exp.dmp wner=exp
    -bash:!@#$%"""@devdb: event not found
    [oracle@rac2 ~]$exp 'exp/"12345!@#$%"@devdb'file=./exp.dmp wner=exp 
    Export: Release 10.2.0.4.0 - Production on Thu May 7 19:21:32 2009 
    Copyright (c) 1982, 2007, Oracle.  All rights reserved. 
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, Real Application Clusters, OLAP, Data Mining
    and Real Application Testing options
    Export done in US7ASCII character set and AL16UTF16 NCHAR character set
    server uses ZHS16GBK character set (possible charset conversion)
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user EXP
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    . exporting object type definitions for user EXP
    About to export EXP's objects ...
    . exporting database links
    . exporting sequence numbers
    . exporting cluster definitions
    . about to export EXP's tables via Conventional Path ...
    . . exporting table                         TABLE1          1 rows exported
    . exporting synonyms
    . exporting views
    . exporting stored procedures
    . exporting operators
    . exporting referential integrity constraints
    . exporting triggers
    . exporting indextypes
    . exporting bitmap, functional and extensible indexes
    . exporting posttables actions
    . exporting materialized views
    . exporting snapshot logs
    . exporting job queues
    . exporting refresh groups and children
    . exporting dimensions
    . exporting post-schema procedural objects and actions
    . exporting statistics
    Export terminated successfully without warnings.

  • 相关阅读:
    EF框架 处理decimal字段 Sum() 遇到NULL时的特殊处理
    RSA加密解密及RSA签名和验证
    SQL 类似switch的东东用法
    js抛物线动画
    MyBatis的结果映射(resultMap)
    mybatis中#和$符号的区别
    MyBatis 中Mapper.xml中注意事项
    MyBatis sql映射器 Mapper
    MyBatis的自定义别名和内置别名
    MyBatis简单认识(入门)
  • 原文地址:https://www.cnblogs.com/redcoatjk/p/3562365.html
Copyright © 2011-2022 走看看