Logs a user-defined trace event to a trace session.
NOTIFY TRACE EVENT trace-event-name ( [ param1 [ ,... ] ] )
The trace event name must be the name of a user-defined trace event. It cannot be a system-defined trace event.
The values of the trace event fields.
This statement is used to notify any sessions that include the specified trace event. If a trace event is not being traced by any session, then this statement has no effect and the parameters are not evaluated (for example, by a call to a user-defined function).
You must have the NOTIFY TRACE EVENT system privilege.
None
Not in the standard.
The following statements log events to the current (fictitious) event trace session, my_event.
NOTIFY TRACE EVENT my_event( 1, 'Hello world' ); -- trigger user-defined trace events NOTIFY TRACE EVENT my_event( 2, 'Hello world 2' ); NOTIFY TRACE EVENT my_event( 3, 'Hello world 3' );