sql server - Blocking Transaction Issue with SSIS -


i have ssis package starts transaction, marks existing records in destination table inactive. have data flow task inserts new records before commiting or rolling transaction.

the problem having df task hanging due deadlock. package has been running fine month, reason started having lock issues.

enter image description here

i have tried setting different transaction levels, no luck far. can tell here lock condition:

enter image description here

can show me execution plan? there clustered index scans? if there can solve pretty quickly.

to fix problem, need create non-clustered index on column identified in predicate section. effect of doing non-clustered index seek (which more of direct path data scan) , bypass deadlock problem.


Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -