Two things that need improvement in PL/SQL Developer

iraklisvai

Member²
Suppose I want to connect to

username1/password1@new1

and without opening another PL/Sql Developer to a different Database for example

username2/password2@new2

If I have Toad as an IDE, I can see triggers and procedures of both schemas.
With PL/SQl I can't.

--------------------

Another issue,

If I open a new SQL Window, and write

select * from TableA;

Then I write

select * from TableB;

And I want to run only the second statement, I have to mark it with the mouse and press F8,
which is a bit inconvienient. With Toad, if I put the cursor in statemnt 2, then I can run it.
With PL/SQL Developer I have to open a new SQL Window or hightlight it and press F8

Thank you.
 
Regarding your 2nd issue, you can just check the setting:
"Preferences" - "Window Types" - "SQL Window" - "AutoSelect statement"
Now you just put your cursor within the sql you want to execute and press F8.
 
Back
Top