new sql window with alter sesscion command

UPeter

Member²
Hallo
it is possible to execute automatic an alter session command when i open a new sql weindow?
It must be executete also when i choose on a table the command query data.
I didn't found anything.
 
You can use the AfterConnect.sql file in the PL/SQL Developer installation directory for this. It will execute for all sessions (SQL Windows, Test Windows, and so on). You can enter multiple SQL commands here, terminated with a semi-colon. You can also execute PL/SQL Blocks, terminated with a slash. It's similar to a Command Wondow or SQL*Plus script.
 
Back
Top