1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Connecting to the database SAOLOG Production.
Debugger attempting to connect to database.
Executing PL/SQL: ALTER SESSION SET PLSQL_DEBUG=TRUE
Executing PL/SQL: DECLARE
id VARCHAR2( 30 );
BEGIN
id := DBMS_DEBUG.initialize( '0.0.0.0:1215765327943', 0 );
DBMS_DEBUG.debug_on( TRUE );
END;
Debugger connected to database.
Executing PL/SQL: BEGIN
DBMS_DEBUG.debug_off();
END;
Process exited.
Disconnecting from the database SAOLOG Production.
Debugger disconnected from database.
Debugger connection to debuggee process has been lost. |
Partager