oracle密碼特殊字元在imp、exp裡的使用
今天在做資料匯出的時候,由於使用者名稱的密碼使用的是特殊字元,所以遇到了錯誤程式碼:“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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- exp 時遇到密碼有特殊字元(!@#)解決方法密碼字元
- 特殊符號密碼處理 - 匯入匯出exp/imp符號密碼
- oracle使用者密碼設定的特殊字元問題Oracle密碼字元
- exp/imp expdp/impdp Tables 萬用字元 % 的使用字元
- 【exp/imp不同版本】Oracle不同版本的exp/imp使用注意事項Oracle
- Oracle imp/expOracle
- Oracle使用者密碼中含有特殊字元的登入辦法Oracle密碼字元
- ORACLE IMP和EXP的使用實驗Oracle
- ORACLE 資料庫業務使用者密碼重置慎用特殊字元Oracle資料庫密碼字元
- 【方法】Oracle使用者密碼含特殊字元時的登陸問題Oracle密碼字元
- oracle exp和impOracle
- oracle imp和expOracle
- oracle exp imp 用法Oracle
- exp/imp工具的使用
- mongodb密碼特殊字元的解決方法MongoDB密碼字元
- Oracle的exp/imp詳解Oracle
- oracle實驗記錄 (使用exp/imp)Oracle
- exp/imp expdp/impdp Tables 萬用字元 % 的使用【Blog 搬家】字元
- 使用者密碼包含特殊字元時的登陸方法密碼字元
- Oracle exp/imp匯出匯入工具的使用Oracle
- 【EXP/IMP】使用EXP /IMP工具“模糊”匯出和匯入
- oracle exp_imp小記Oracle
- exp\imp 遇到作業系統轉移字元問題(比如query引數裡的where)作業系統字元
- Oracle Exp/Imp常見問題Oracle
- Oracle 去特殊字元Oracle字元
- Oracle的exp、imp的資料遷移步驟Oracle
- exp/imp工具
- 理解exp, imp 使用direct=y 及imp commit=yMIT
- Oracle 傳輸表空間-EXP/IMPOracle
- Oracle匯入(imp )與匯出(exp )Oracle
- ORACLE匯入匯出命令exp/impOracle
- 轉:oracle EXP /IMP引數詳解Oracle
- oracle 10g imp/exp IMPDP/EXPDPOracle 10g
- exp/imp匯出匯入工具的使用
- Oracle 特殊字元轉義Oracle字元
- oracle資料的匯入匯出imp/expOracle
- ORACLE exp/imp匯入報錯IMP-00009&IMP-00028&IMP-00015Oracle
- 使用Oracle 的 imp ,exp 命令實現資料的匯入匯出Oracle