How do I log/trace Oracle stored procedure calls with parameter values?

后端 未结 4 1579
不思量自难忘°
不思量自难忘° 2020-12-19 14:10

We\'re looking for a way to log any call to stored procedures in Oracle, and see what parameter values were used for the call.

We\'re using Oracle 10.2.0.1

W

4条回答
  •  无人及你
    2020-12-19 14:56

    are you using 10g let try with this exec dbms_monitor.session_trace_enable(session_id=>xxx, serial_num=>xx, waits=>true, binds=>true); you can get session_id=SID & serial_num=SERIAL# from v$session

提交回复
热议问题