Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

EQ-TM Contention

user8792751Mar 29 2013 — edited Mar 29 2013
Hi ALL,

we are trying to delete a record from a Table which has million rows. but the delete operation taking lot of time and waiting for the enq: TM - contention.

DELETE IS_NOTE 
WHERE
 ID IN (SELECT ID_OLD FROM IS_NOTE_ADT WHERE ID_NEW = :B1 AND 
  ID_NEW != ID_OLD)


call     count       cpu    elapsed       disk      query    current        rows
------- ------  -------- ---------- ---------- ---------- ----------  ----------
Parse        1      0.00       0.00          0          0          0           0
Execute      0      0.00       0.00          0          0          0           0
Fetch        0      0.00       0.00          0          0          0           0
------- ------  -------- ---------- ---------- ---------- ----------  ----------
total        1      0.00       0.00          0          0          0           0

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: 28     (recursive depth: 1)

Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  enq: TM - contention                          119        3.00        354.26
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 26 2013
Added on Mar 29 2013
1 comment
374 views