Substitution variable 1

K G

Member
Hello,

My PL/SQL Developer 11.0.6 assigns a value 'Developer\login.sql' to the substitution variable 1:

SQL> def
DEFINE _SQLPLUS_RELEASE = "000000000" (CHAR)
DEFINE _EDITOR = "PLSQLDev" (CHAR)
DEFINE _DATE = "01-11-2023" (CHAR)
DEFINE _PRIVILEGE = "" (CHAR)
DEFINE _O_VERSION = "" (CHAR)
DEFINE _O_RELEASE = "000000000" (CHAR)
DEFINE _USER = "MYUSER" (CHAR)
DEFINE _CONNECT_IDENTIFIER = "LOCAL" (CHAR)
DEFINE 1 = "Developer\login.sql" (CHAR)

How can I make it stop doing this? I haven't found anything in preferences or online help. Thanks!
 
Does this happen immediately after creating a new Command Window? Or do you first execute some scripts?
 
Last edited:
Okay. Can you go to the PL/SQL Developer installation directory and check if there is a login.sql script? If it exists, can you let me know the contents?
 
I tried using the login.sql file and wrote there "undef 1". It didn't change anything for some reason...
 
Back
Top