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.
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.