Hello,
for a long time, our debugging process hangs when we stop them or when error occur.
A small code like this :
When executing this code in a test windows, if we want to stop on the fetch line with the break buton, for example, PSD hang, and some time consume 50% of processor. (version 11 an 12 and 4 PC on differents windows, oracle 11 enterprise).
Its the same when error occur.
If we don't stop
I suppose PSD is not the responsible, perhaps oracle configuration or grant.
What do you think about this?
for a long time, our debugging process hangs when we stop them or when error occur.
A small code like this :
SQL:
declare
CURSOR c IS
SELECT 1 FROM dual;
r c%ROWTYPE;
begin
OPEN c;
FETCH c INTO r;
CLOSE c;
end;
When executing this code in a test windows, if we want to stop on the fetch line with the break buton, for example, PSD hang, and some time consume 50% of processor. (version 11 an 12 and 4 PC on differents windows, oracle 11 enterprise).
Its the same when error occur.
If we don't stop
I suppose PSD is not the responsible, perhaps oracle configuration or grant.
What do you think about this?
Last edited: