sql server - How to diagnose SSIS packages locking each-others? -
i have several ssis packages doing few queries , inserting results in new tables. ssis packages triggered different parameters values service broker queues, max 10 simultaneous operations. (ex : 2 packages, each of being called 5 times 5 different values of parameter)
when operated separately took few seconds, when called service broker, after few ran successfull, start slowing down, totally stuck.
there no concurrent read , inserts, packages read same tables (with nolocks everywhere) insert new data in new tables created packages. each package write in own destination table on none other package try read nor write.
what should consider modifying in ssis or investigate in ssms and/or profiler diagnose , solve issue ? i'm not used track down locks...
thanks in advance,
- i recommend using sp_whoisactive sure nothing blocking.
- i recommend monitoring resources (io, network, ram) on target/destination/etl server(s)
- try running different scenarios such 2 packages , 2 simultaneous operations etc.
Comments
Post a Comment