Here is my login.sql:
1 2 3 | [oracle@localhost]$ cat /tmp/sqlpath/login.sql select 'login.sql invoked' output from dual; |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | [oracle@localhost]$ export SQLPATH=/tmp/sqlpath [oracle@localhost]$ sqlplus tc/tc@ora12 SQL*Plus: Release 12.2.0.1.0 Production on Wed Mar 15 09:20:52 2017 Copyright (c) 1982, 2016, Oracle. All rights reserved. Last Successful login time : Wed Mar 15 2017 09:16:06 +07:00 Connected to : Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production With the Partitioning, Automatic Storage Management, OLAP, Advanced Analytics, Real Application Testing and Unified Auditing options SQL> |
Unsurprisignly, if I set ORACLE_PATH, then login.sql is invoked:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | [oracle@localhost]$ export ORACLE_PATH=$SQLPATH [oracle@localhost]$ unset SQLPATH [oracle@localhost]$ sqlplus tc/tc@ora12 SQL*Plus: Release 12.2.0.1.0 Production on Wed Mar 15 09:21:13 2017 Copyright (c) 1982, 2016, Oracle. All rights reserved. Last Successful login time : Wed Mar 15 2017 09:20:52 +07:00 Connected to : Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production With the Partitioning, Automatic Storage Management, OLAP, Advanced Analytics, Real Application Testing and Unified Auditing options OUTPUT --------------------------------------------------- login.sql invoked SQL> |
I have no idea why Oracle has changed the existing functionality with login.sql, but that is definitely something to keep in mind in case you are going to upgrade to a new release.
Interestingly, SQLcl still honor SQLPATH even when both SQLPATH and ORACLE_PATH are set:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | [oracle@localhost]$ cat /tmp/sqlpath/login.sql select 'login.sql invoked' output from dual; [oracle@localhost]$ cat /tmp/oracle_path/login.sql select 'oracle_path invoked' from dual; [oracle@localhost]$ export ORACLE_PATH=/tmp/oracle_path [oracle@localhost]$ export SQLPATH=/tmp/sqlpath [oracle@localhost]$ ./sql tc/tc@ora12 SQLcl: Release 12.2.0.1.0 RC on Ср мар 15 09:42:08 2017 Copyright (c) 1982, 2017, Oracle. All rights reserved. Connected to : Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production With the Partitioning, Automatic Storage Management, OLAP, Advanced Analytics, Real Application Testing and Unified Auditing options OUTPUT ----------------- login.sql invoked |