oracle使用者密碼有@符號時,sqlplus連線方式

pwz1688發表於2015-11-19
oracle使用者密碼不小心設定了帶有“@”符號,正常登陸總是無法登陸,提示無法解析的連線字串錯誤,其實解決辦法很簡單,轉義即可,如下:

點選(此處)摺疊或開啟

  1. 方法一:

  2. C:\Users\Administrator>sqlplus h2/\"hydee@soft123\"@huarun_h2

  3. SQL*Plus: Release 11.2.0.1.0 Production on 星期四 11月 19 10:31:26 2015

  4. Copyright (c) 1982, 2010, Oracle. All rights reserved.


  5. 連線到:
  6. Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
  7. With the Partitioning, OLAP, Data Mining and Real Application Testing options

  8. SQL> exit;
  9. 方法二:

  10. C:\Users\Administrator>sqlplus h2/"""hydee@soft123"""@huarun_h2

  11. SQL*Plus: Release 11.2.0.1.0 Production on 星期四 11月 19 10:32:28 2015

  12. Copyright (c) 1982, 2010, Oracle. All rights reserved.


  13. 連線到:
  14. Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
  15. With the Partitioning, OLAP, Data Mining and Real Application Testing options

  16. SQL>

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

相關文章