Trace not supported in debug mode error

shaynegw

Member
Hi

I'm afraid I don't understand the cause of the following error message when I enable trace in a test script window.

"Trace not supported in debug mode, report will not be created."

The code itself is pretty straighforward:

DECLARE
CURSOR cur_2 IS
SELECT MAX(z.empsen_effdt) r1 FROM empsen_t z;
BEGIN
FOR i IN cur_2
LOOP
dbms_output.put_line(i.r1);
END LOOP;
END;

I couldn't find a description of this error in the online documentation so I thought I would ask here.

Can anyone please tell me what is causing this error, and how can it be corrected?

Thanks and take care,
Shayne
 
Hi,

this is from a test window? instead of hitting the debug icon on the window toolbar, hit the execute icon on the main toolbar.

otherwise, trace and profile will not work...
 
Back
Top