I have an SSIS package with and Excel Source, Derived Columns and and OLE DB Destination. It takes an XLS file, massages the data (new, derived columns) and then populates a SQL db table with the results. My problem is: where do I filter the data coming
in from the XLS? I want to only work with rows that have a given value in one of the columns (i.e. only rows where Type is "DNA") and I want to order the results by SubType. Where and how can this be done inside the SSIS package?
↧