「Oracle12c」SQL*Plusに外部ファイルを実行する方法

環境
Oracle Database 12c Standard Edition Release 12.2.0.1.0 – 64bit Production
Windows Server 2012 R2

書式
@ファイル名.sql

使用例
1.ファイルの中身(sample.sql)
SELECT * FROM USER_TBL WHERE GRADE=’22’;

2.引数無し、パスの指定なしの場合

D:\>sqlplus user01/pwd01@arkdb
SQL> @sample.sql

3.引数無し、パスの指定ありの場合

D:\>sqlplus user01/pwd01@arkdb
SQL> @D:\arkgame\sample.sql

 

Oracle 12c

Posted by arkgame