I have a table EXT_MEEI_SQL with following info
Column_name Type Length
----------- ---- ----------- -
MEDICAID_ID char 12
MMS_SEQ_NO int 4
SUB_SEQ_NO datetime 8
SQL_LINE1 varchar 255
SQL_LINE2 varchar 255
MESQ_ID numeric (IDENTITY) 9
INDEXES:
index_name (index_keys) index_description
---------- ----------------- ----
EXTX_MESQ_PRIMARY (MESQ_ID) clustered, unique
EXTX_MESQ_ID (MESQ_ID) nonclustered
MEEI_SQL_IDX_MEDMMS (MEDICAID_ID, MMS_SEQ_NO) nonclustered
while inserting data into SQL table deadlock is occurring..Is it because of these clustered and non clustered index on the same column (MESQ_ID)?