Sure sorry for the delay
The problem occurs inside debugging when I execute sql inside debugging.
I get a DBMS pipe error and need to clear the pipe buffer:
After clearing it is also not working, but not always.
select * from v$db_pipes;
DECLARE
v_pipe_rm NUMBER;
BEGIN
DBMS_PIPE.PURGE('0048D82B0001$PLS_TO_DE');
v_pipe_rm := DBMS_PIPE.REMOVE_PIPE('0048D82B0001$PLS_TO_DE');
DBMS_PIPE.RESET_BUFFER;
dbms_output.put_line ( v_pipe_rm);
exception
when others then dbms_output.put_line ( SQLERRM ) ;
END;
Strange thing is that I want to reproduce, but for now, it is working.
:-( and I don't know why....Maybe you have any idea
regards,
Stef