My office is in the process of adding SQL scripts into SSIS for the first time to data flows, and so far so good. However, we have two sets of SQL scripts that we'd like to essentially combine that we are very much stuck on. In this particular situation,
we are using one script to pull all Rule ID#s associated with a specific Category of products, and using a second script using the Rule ID#s from the results of the first script to get a list of all products that do not adhere to the standards set by that
particular Rule ID. Our process has always been to run these two separately and just plug in the Rule IDs to the second script manually, but we now have 3000+ Rule IDs. Is there a way to create a control or data flow in SSIS that will run the first script,
then populate the Rule ID#s in the second script before it runs? We do not want to edit any information in the tables, we just want to access the data that's in the tables. The finished product would ideally be an Excel workbook of all the results of the second
script.
↧