Using SQL Server 2005 SSIS. I have created a package that imports a flat file, does some conversions and adds a couple of derived columns and then sends the output to a SQL Server table (works great). Now...I want to add logic in a step before the OLE DB Destination step that determines the number of rows processed and if the number is "X" proceed to the OLE DB Destination step, but if the number is "Y", stop processing.
Another potential problem is the data does not have a unique identifier (all string fields) to do a count (distinct or not) on the number of rows, but that may not be an issue.
Any suggestions are appreciated.
Another potential problem is the data does not have a unique identifier (all string fields) to do a count (distinct or not) on the number of rows, but that may not be an issue.
Any suggestions are appreciated.