Oradebug doc

SQL> oradebug doc event filter
Event filters in library DIAG:
occurencefilter to implement counting for event checks
callstackfilter to only fire an event when a function is on the stack.If the nofname option is used, then the event is fired only when the function is not on the stack
eqfilter to only fire an event when a == b
nefilter to only fire an event when a != b
gtfilter to only fire an event when a > b
ltfilter to only fire an event when a < b
gefilter to only fire an event when a >= b
lefilter to only fire an event when a <= b
anybitfilter to only fire an event when (a & b) != 0
allbitfilter to only fire an event when (a & b) == b
nobitfilter to only fire an event when (a & b) == 0
betfilter to only fire an event when b <= a <= c
nbetfilter to only fire an event when a < b or a > c
infilter to only fire an event when a is equal to any b .. p
ninfilter to only fire an event when a is not equal to any b .. p
streqfilter to only fire an event when string s1 = s2 (up to characters)
strnefilter to only fire an event when string s1 != s2 (up to characters)
tagfilter to only fire an event when a tag is set
Event filters in library RDBMS:
waitfilter for specific wait parameters and wait duration
processfilter to set events only for a specific process
pxfilter to check identity of the process for fault injection
Event filters in library GENERIC:
errargfilter to set error events only for a specific error argument

© 2011-2021 Sayan Malakshinov