vote up 1 vote down star
1

Is there a data-dictionary view or some other way of telling which (if any) sessions currently have tracing enabled (after a call to DBMS_MONITOR.SESSION_TRACE_ENABLE)?

(At the minute I keep running an ls on the udump folder, but this isn't exactly foolproof)

flag

1 Answer

vote up 1 vote down check

The dynamic V$SESSION view has this info:

select * from v$session where sql_trace = 'ENABLED'

link|flag
Bingo. Thanks. – cagcowboy Aug 5 at 14:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.