CMD命令下訪問Oracle資料庫

2022-03-29 23:44:38 字數 788 閱讀 5145

1.非集群下 windows環境下資料庫 

127.0.0.1 只是個ip代表  實際要輸入你要訪問的資料庫伺服器ip位址的

①執行->cmd

sqlplus/nolog 然後

第一種方式 :conn scott/[email protected]:1521/orcl

第二種方式:conn scott/123456@(description =(address_list =(address = (protocol = tcp)(host = 127.0.0.1)(port = 1521)))(connect_data =(server = dedicated)(service_name = orcl)))

linux環境下資料庫

conn scott/123@(description =(address_list =(address = (protocol = tcp)(host = 127.0.0.1)(port = 1521)))(connect_data =(server = dedicated)(service_name = orcl)))

集群下連線

conn scott/123@(description=(address_list=(load_balance = yes)(failover = on)(address=(protocol=tcp)(host=127.0.0.1)(port=1521))(address=(protocol=tcp)(host=127.0.0.2)(port=1521)))(connect_data=(server=default)(service_name=orcl)))

CMD命令下訪問Oracle資料庫

1.非集群下 windows環境下資料庫 127.0.0.1 只是個ip代表 實際要輸入你要訪問的資料庫伺服器ip位址的 執行 cmd sqlplus nolog 然後 第一種方式 conn scott 123 127.0.0.1 1521 orcl 第二種方式 conn scott 123456 ...

CMD下的FTP命令

ftp commands may be abbreviated.commands are 大家對這個命令應該比較熟悉了吧?網路上開放的ftp的主機很多,其中很大一部分是匿名的,也就是說任何人都可以登陸上去。現在如果你掃到了一台開放ftp服務的主機 一般都是開了21埠的機器 大家可能看到了,這麼多命令...

cmd下重啟iis命令

有時候我們在web程式如 asp,中無意中使用到了乙個死迴圈,或者在測試dll元件時,掛了。這時候iis就停止了響應,我們要繼續我們的工作啊,重啟iis服務吧。然而這個程序還在執行,internet 服務管理器還關閉不了。而當想結束inetinfo.exe 或者 dllhost.exe 程序的時候,...