René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

dbms_debug

See also debugging pl/sql.
See also $ORACLE_HOME/rdbms/admin/dbmspb.sql.

attach_session

continue

breakflags can have one of the following values:
  • break_next_line
    Jump to next line in source (not stepping in a procedure or function)
  • break_any_call
    Step into into a procedure (if next line is in another procedure or function)
  • break_any_return
  • break_return
  • break_exception
  • break_handler
  • abort_execution

get_runtime_info

set_breakpoiont

programin
line#in
breakpoint#out
fuzzyin
iterationsin

show_source

synchronize

run_infoout
info_requestedin
Synchronize waits until the debugged program signals an event. If info_requested is not null, it returnes get_runtime_info in run_info.

Types

program_info

This type is used to represent a location in program code (which boils down to be a line number in source code). It can be used for break points and stack backtraces.

runtime_info

This type is used to examine information about the debugged program.

breakpoint_info