I have compiled my code and tested it with the debugger.
Now I want to deploy - how do you remove the debug information? I still see the 'Add Debug Information' checked when I right-click on the object ... I want to remove this ...
thank u
BEGIN
DBMS_OUTPUT.ENABLE(1000000);
DBMS_OUTPUT.PUT_LINE(Program started at ' || TO_CHAR(SYSDATE, 'DD-MON-YY HH:MI:SS'));
run_proc(1);
END;
/
The above code in a test script causes the debugger to hang, waiting on an (internal) PIPE call.
Is this a bug??
An example would be to do something like the followning job PL/SQL:
declare
v_job_status VARCHAR2(1) := 'N';
begin
-- check job status
select broken
into v_job_status
from dba_jobs
where job =
(select /*+ RULE */ job
from dba_jobs_running
where sid = userenv('SID'))...
Never got any feedback from the following circa 1/8/08:
=========================================
You mentioned "It is always a good idea for the programmer to check inside the job itself (for instance at the beginning of a loop) whether the job is broken. If the job is broken, the program must...
You mentioned "It is always a good idea for the programmer to check inside the job itself (for instance at the beginning of a loop) whether the job is broken. If the job is broken, the program must be exited. In this way the code will eventually stop when the code inside the job finds out that...