oracle密碼特殊字元在imp、exp裡的使用

zhanglei_itput發表於2009-05-07

    今天在做資料匯出的時候,由於使用者名稱的密碼使用的是特殊字元,所以遇到了錯誤程式碼:“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> conn
sys/oracle@devdb as sysdba
已連線。
SQL> create user exp identified by "
";
使用者已建立。
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>exp exp/12345!@#$%@devdb file=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!@#$%"@devdb2 file=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!@#$%"""@devdb2 file=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 ~]$ exp exp/12345!@#$%@devdb file=./exp.dmp wner=exp
-bash:
!@#$%@devdb: event not found
[oracle@rac2 ~]$ exp exp/"""
12345!@#$%"""@devdb file=./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.

參考文獻:http://hi.baidu.com/edeed/blog/item/4b5bbe09d4092e236b60fbd3.html

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9252210/viewspace-594453/,如需轉載,請註明出處,否則將追究法律責任。

相關文章