Oracle 12cで簡易接続ネーミング・メソッドを使用しOracleに接続
環境
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(サーバー側)
書式
sqlplus ユーザ名/パスワード@ホスト名:ポート番号/SID
sqlplus ユーザ名/パスワード@ホスト名:ポート番号/SID
sqlplus ユーザ名/パスワード@ホスト名:ポート番号/SID
説明
ユーザ名:OracleのユーザID
ホスト名:OracleサーバのIPアドレスまたはマシン名
ポート:リスナー(listener)のポート番号(ディフォルト1521)
SID: データベース名
操作例
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>
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>
バージョンの確認
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