Debugger in Test window

Vinny

Member²
When attempting to run something through the test window, I never get the chance to step through the code. After F9, the code just runs, never getting to the point where I can click the step into icon (ctrl-n).

Is this how the user was setup? The user I am logged in as is also the owner of the package I am trying to run in debug.

My script:
DECLARE
myclob CLOB;
BEGIN

SELECT * INTO myclob
FROM xml_reader;

xmlreader.parse( myclob );

END;

Thanks.
 
That did it. I guess I now understand what the downside of unchecking "add debug information when compiling" is. Thanks.
 
Make sure you use the "Start debugger" instead of the "execute"...

(It's not clear what you are using (F9) since I've scrambled all my shortcuts.)
 
We've had similar problems after upgrading from Oracle 9i to 10g. The problems went away after granting "debug connect session" and "debug any procedure" system privileges. They weren't required in 9i.
 
Back
Top