您好,欢迎访问一九零五行业门户网

Oracle EBS SQL Trace日志收集的方法

oracle ebs sql trace日志收集的方法 ,这个目录实际上是数据库系统参数表(v$parameter)中的user_dump_dest的值,可以执行下边的
raw trace的收集方法
1. 打开trace,help > diagnostics > trace > trace > trace with binds and waits
trace项代表的意思
no trace – turns trace off.regular trace – generates a regular sql trace by performing the following statement:                               alter session set sql_trace = true;
trace with binds – writes bind variable values in the sql trace filetrace with waits – writes wait events in the sql trace filetrace with binds and waits – writes both bind variable values and wait events in the sql trace file
2.执行业务功能
3.关闭trace,help > diagnostics > trace > trace > no trace
系统会弹出一个窗口,,告诉你trace文件所在的目录。
这个目录实际上是数据库系统参数表(v$parameter)中的user_dump_dest的值,可以执行下边的sql来找到trace文件所在的目录
trace文件名后边的那个数字是database server pid,也可以从help>about中找到。
其它类似信息

推荐信息