I am using SSIS in BIDS 2008 and I am trying to get a count of an Object Variable containing a list of files. Any idea on how to do this?
Thanks!
How are you populating this Object Variable? Depending on how you populate the variable, more eligant ways of getting the count can be listed. However, here is a quick and dirty solution for you:
Collections
and change the Enumerator to Foreach ADO Enumerator
and the ADO object source variable to your Object variable.Execute SQL Task
SELECT (@Count + 1)
Parameter Name
attribute to @CountOnce your looping completes, you will have the count of the object.
NOTE: If you are already iterating through these files (which I assume you are since you are using SSIS to populate an Object Variable with file names), you need only perform steps 1, 3-6.