If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > DB2 > DB2EVML_DB2DETAILDEA entry after upgrade

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 08-18-10, 11:19
CCMF CCMF is offline
Registered User
 
Join Date: Nov 2004
Posts: 16
DB2EVML_DB2DETAILDEA entry after upgrade

Recently our company upgraded from DB2 LUW 9.1.2 to LUW 9.1.8. Since then there are entries like DB2EVML_DB2DETAILDEA when we execute
select appl_name from sysibmadm.snapappl_info where lcase(appl_name) like '%db%'

These entries appear not only with the server name but also with user machine names.

What can we do to stop them?


Thanks in advance,

Ferdinand
Reply With Quote
  #2 (permalink)  
Old 08-18-10, 13:59
db2girl db2girl is offline
∞∞∞∞∞∞
 
Join Date: Aug 2008
Location: Toronto, Canada
Posts: 1,816
Take a look at:
DB2 Database for Linux, UNIX, and Windows

DB2EVML_DB2DETAILDEA seems to be for a db2detaildeadlock event monitor which is created by default. I think you need to stop this event monitor (set state to 0) or drop it (if it's not needed) if you don't want to see DB2EVML_DB2DETAILDEA in the snapshot output.
Reply With Quote
  #3 (permalink)  
Old 08-18-10, 15:07
CCMF CCMF is offline
Registered User
 
Join Date: Nov 2004
Posts: 16
Thank you, db2girl.

I was able to disable the event monitor doing the following:

SELECT * FROM SYSCAT.EVENTS
DB2DETAILDEADLOCK appeared.

CONNECT TO table_name USER user_name

SET EVENT MONITOR DB2DETAILDEADLOCK STATE 0

DROP EVENT MONITOR DB2DETAILDEADLOCK

CONNECT RESET

SELECT * FROM SYSCAT.EVENTS

DB2DETAILDEADLOCK disappeared.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On