[20211214]ezconnect輸入口令的問題.txt

lfree發表於2021-12-14

[20211214]ezconnect輸入口令的問題.txt

--//前幾天看別人解決問題,我發現對方採用ezconnect連線,看上去語法怪怪的,我以前的習慣經常看別人操作學習新的技能.我仔細看對
--//方在命令列沒有輸入口令.也許出於安全原因還是對方的工作習慣,不過我們生產系統由於等保的原因,口令也忒長,根本記不住,我基
--//本採用copy and paste方式,上班有一點點空閒測試看看對方的寫法:

$ sqlplus -s -l scott/book@127.0.0.1:1521/book <<< @ver1
PORT_STRING                    VERSION        BANNER
------------------------------ -------------- --------------------------------------------------------------------------------
x86_64/Linux 2.4.xx            11.2.0.4.0     Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production

--//如果不輸入口令:
$ sqlplus -s -l scott@127.0.0.1:1521/book <<< @ver1
ERROR:
ORA-12504: TNS:listener was not given the SERVICE_NAME in CONNECT_DATA
SP2-0751: Unable to connect to Oracle.  Exiting SQL*Plus

--//如果不輸入口令上面輸入命令無效。
--//這裡"/"符號後面跟著密碼,因此如果採用如上方式解析就出了問題,認為沒有service_name。
--//引入字元解決這個問題:

$ sqlplus scott@\"127.0.0.1:1521/book\"

--//但是我這樣遇到另外的問題。如果寫成
sqlplus scott@\"127.0.0.1:1521/book\" <<<@ver1

$ sqlplus -s -l scott@\"127.0.0.1:1521/book\" <<<@ver1

SP2-0306: Invalid option.
Usage: CONN[ECT] [{logon|/|proxy} [AS {SYSDBA|SYSOPER|SYSASM}] [edition=value]]
where <logon> ::= <username>[/<password>][@<connect_identifier>]
      <proxy> ::= <proxyuser>[<username>][/<password>][@<connect_identifier>]
SP2-0751: Unable to connect to Oracle.  Exiting SQL*Plus

--//仔細一想就很簡單,oracle把後面的輸入當作口令了。修改如下:

$ sqlplus -s -l scott@\"127.0.0.1:1521/book\" @ ver1 <<<"book"

PORT_STRING                    VERSION        BANNER
------------------------------ -------------- --------------------------------------------------------------------------------
x86_64/Linux 2.4.xx            11.2.0.4.0     Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production


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

相關文章