Logon window instead of Oracle logon

Jens Balk

Member
Hi,

every time I start plsqldev.exe I get the following window:
logon_popup.jpg


How can I prevent that?

I would like to get the following window:
oracle_logon.jpg


System: Windows XP, Version 9.0.0.1601

regards
Jens
 
You can use the NoConnectionList command-line parameter. For example:

"C:\Program Files\PLSQL Developer\plsqldev.exe" NoConnectionList

You can also set this in the params.ini file in the PL/SQL Developer installation directory:

Code:
# Suppress the connection list at startup and display
# the old style logon dialog instead:
#
NoConnectionList=1

 
Back
Top