oracle11g - Is there a tool for tracing SQLs executed on Oracle -
is there tool (that comes oracle) tracing sqls have been executed? in db2 there called 'event monitor' use track tables have been updated. there equivalent tool in oracle?
i plan to
- enable tracing
- go on website (that uses db) , change entry
- disable tracing
- see output file , record table has been updated.
there table looking should updated when entry changed. not know name of table (and there many tables), , need trace sql executed find out.
i have tried:
alter session set sql_trace = true; -- go on website , change entry alter session set sql_trace = false; tkprof the_trace_file.trc file.out explain=system/manager sys=no
however when following steps above, no sqls recorded.
is there tool oracle provides? (i avoid downloading external software)
there table looking should updated when entry changed. not know name of table (and there many tables), , need trace sql executed find out.
i'm thinking using word "trace" here meaning meant in oracle world.
you hit button in app, , looking @ sql queries running, want find table code referencing? did right?
in case, have @ v$sql, , @ columns sql_text , sql_fulltext.
Comments
Post a Comment