Run statement

festerbg

Member
Hi all,
I use PL/SQL Developer 8.0.3. Is it possible to run/with a short key if available/ a statement when i place the cursor on a specific line? For example in one SQL Window i have 2 queries :

select sysdate from dual;
select sysdate + 1 from dual;

If i place the cursor on the one of the lines is it possible to run only that statement?
In SQL Developer is a standard functionality :)

Thanks in advance,
Alexander.
 
You can enable the SQL Window preference (Tools > Preferences > SQL Window) "Auto select statement". Now only the current statement under the cursor is executed. To execute multiple statements you will now have to select them first.

In the upcoming 10.0 release there will be a function key to select the current statement or all statements.
 
Back
Top