Skip to Main Content

SQL Developer

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Oracle SQL Developer 18.3.0.277 connection opener is waiting until currently running script is compl

debugger.plOct 18 2018 — edited Aug 14 2021

Hello, Everyone.

Since Oracle SQL Developer version 17.3.1.279 I have problem with opening new connection on new tab or using Monitor Sessions feature

until currently running script is completed.

For example I have sample code

set serveroutput on

set timing on

begin

  for i in 1..10 loop

    dbms_lock.sleep(6);

  end loop;

end;

/

which I am running using connection no 1 on one tab

and when I am trying to open connection no 2 ( different user and even different server and user )

it is waiting for completion of code mentioned above using connection no 1.

I have tried to open unshared connection and have the same problem - connection opener is waiting until currently running script is completed.

Has anyone experienced similar behaviour?

Best Regards.

Piotr

This post has been answered by debugger.pl on Jan 23 2019
Jump to Answer
Comments
Post Details
Added on Oct 18 2018
25 comments
4,344 views