I have an SSIS script component which takes in rows from input.
One of the rows on the input is a boolean which identifies if the row is of type A or B.
How do I get the script to load all of the input rows into the correct collection of rows.
Also any guides on how to use the row collections and then output them would be great too.
You may be able to use something like what Jamie Thomson did in his blog entry here:
http://consultingblogs.emc.com/jamiethomson/archive/2005/09/05/SSIS-Nugget_3A00_-Multiple-outputs-from-a-synchronous-script-transform.aspx
He uses the script component and splits the output into several output streams depending upon conditions. He explains very concisely in his post how to configure the component and how to send the proper rows to the proper output stream. Hope this is what you were looking for.