I need to see the queries that are being sent to Oracle to execute them. Can someone give me specific detailed instructions on how to do this ?
相关问题
- Can I skip certificate verification oracle utl_htt
- I want to trace logs using a Macro multi parameter
- Error message 'No handlers could be found for
- How to make a .svc file write to asp.net Trace.axd
- convert logback.xml to log4j.properties
相关文章
- node连接远程oracle报错
- oracle 11g expdp导出作业调用失败,提示丢包。
- how do I log requests and responses for debugging
- 执行一复杂的SQL语句效率高,还是执行多少简单的语句效率高
- Oracle equivalent of PostgreSQL INSERT…RETURNING *
- Difference between FOR UPDATE OF and FOR UPDATE
- Android Studio doesn't display logs by package
- Stacktrace does not print in Glassfish 4.1 Cluster
This query will show queries that are currently running:
See documentation of V$SQLAREA
If you want to see the queries from a specific user, you can use this (assuming you have privileges to query
v$session
andv$sqlarea
(usually throughSELECT_CATALOG_ROLE
)Replace SCOTT with the appropriate username in your system
Output: