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