Oracle 12cで簡易接続ネーミング・メソッドを使用しOracleに接続

2021年11月11日

環境

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
Windows 10 64bit(クライアント側)
Oracle 12c
Windows Server 2012 R2(サーバー側)
Windows 10 64bit(クライアント側) Oracle 12c Windows Server 2012 R2(サーバー側)
Windows 10 64bit(クライアント側)
Oracle 12c
Windows Server 2012 R2(サーバー側)

書式

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sqlplus ユーザ名/パスワード@ホスト名:ポート番号/SID
sqlplus ユーザ名/パスワード@ホスト名:ポート番号/SID
sqlplus ユーザ名/パスワード@ホスト名:ポート番号/SID

説明
ユーザ名:OracleのユーザID
ホスト名:OracleサーバのIPアドレスまたはマシン名
ポート:リスナー(listener)のポート番号(ディフォルト1521)
SID: データベース名

操作例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
c:\oracle>sqlplus arkuser/arkpwd@172.17.11.22:1521/arkgame
SQL*Plus: Release 12.2.0.1.0 Production on 木 1111 20:46:23 2021
Copyright (c) 1982, 2016, Oracle. All rights reserved.
最終正常ログイン時間: 木 1111 2021 19:36:10 +09:00
Oracle Database 12c Standard Edition Release 12.2.0.1.0 - 64bit Production
に接続されました。
SQL>
c:\oracle>sqlplus arkuser/arkpwd@172.17.11.22:1521/arkgame SQL*Plus: Release 12.2.0.1.0 Production on 木 11月 11 20:46:23 2021 Copyright (c) 1982, 2016, Oracle. All rights reserved. 最終正常ログイン時間: 木 11月 11 2021 19:36:10 +09:00 Oracle Database 12c Standard Edition Release 12.2.0.1.0 - 64bit Production に接続されました。 SQL>
c:\oracle>sqlplus arkuser/arkpwd@172.17.11.22:1521/arkgame

SQL*Plus: Release 12.2.0.1.0 Production on 木 11月 11 20:46:23 2021

Copyright (c) 1982, 2016, Oracle.  All rights reserved.

最終正常ログイン時間: 木 11月 11 2021 19:36:10 +09:00


Oracle Database 12c Standard Edition Release 12.2.0.1.0 - 64bit Production
に接続されました。
SQL>

バージョンの確認

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
SQL> select BANNER from v$version;
BANNER
--------------------------------------------------------------------------------
Oracle Database 12c Standard Edition Release 12.2.0.1.0 - 64bit Production
PL/SQL Release 12.2.0.1.0 - Production
CORE 12.2.0.1.0 Production
TNS for 64-bit Windows: Version 12.2.0.1.0 - Production
NLSRTL Version 12.2.0.1.0 - Production
SQL> select BANNER from v$version; BANNER -------------------------------------------------------------------------------- Oracle Database 12c Standard Edition Release 12.2.0.1.0 - 64bit Production PL/SQL Release 12.2.0.1.0 - Production CORE 12.2.0.1.0 Production TNS for 64-bit Windows: Version 12.2.0.1.0 - Production NLSRTL Version 12.2.0.1.0 - Production
SQL> select BANNER from v$version;

BANNER
--------------------------------------------------------------------------------
Oracle Database 12c Standard Edition Release 12.2.0.1.0 - 64bit Production
PL/SQL Release 12.2.0.1.0 - Production
CORE    12.2.0.1.0      Production
TNS for 64-bit Windows: Version 12.2.0.1.0 - Production
NLSRTL Version 12.2.0.1.0 - Production

 

Oracle 12c

Posted by arkgame