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!
|
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:
Once 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. |
|||
|
|
Is there a reason you don't just use a script task? Given two SSIS variables, MyObject (type Object) and MyObjectCount (Int32) set to 10. Script task 1 fills the object.
Script task 2 simply assigns the value of the SSIS variable MyObject into a local variable which I cast into the appropriate type. I compare that count to my reference count and they are the same.
Results [Accessing count] Information: Reference count: 10. Actual count 10 If you aren't responsible for what's pushing the object into the SSIS variable, then you might need to wrap the above extractions into a series of try/catch blocks or cast it as a type until you find something that the run-time can convert into a strongly typed object. |
|||
|
|