Quote:
Originally posted by new_user1
But I havent started any event monitoring.
|
May be somebody else started it? An event monitor also can be defined to start automatically upon database startup.
Do:
select evmonname, autostart, target from syscat.eventmonitors;
This will give you the list of defined monitors, along with their autostart flag ('Y' means it starts automatically), and directories where their output goes.
You can then check each monitor's status by:
values (event_mon_state('<monitor name, case sensitive>'));
1 means the corresponding monitor is active.
Deactivate it by:
set event monitor <monitor name> state 0;