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