Reputation: 1
I have a SSIS package which load currencies data from source file to sql server table.Using foreach ADO enumerator using ADO object source variable to get the list of currencies from source file and inside foreach loop using lookup transformation to have currencies lookup and load non matched data into db table. Package executes the first currency iteration data into db table but for second currency it gets stuck. when checked for any blocking i saw Schema stability lock causing the issue. Not sure how can i fix this.
Things that i tried.
Expecting that the foreach loop should pick each currency data one by one and load records into db table when there is no match found in lookup.
Upvotes: 0
Views: 55