A new SQL Server Integration Services (SSIS) project is deployed to the SSIS catalog. To troubleshoot some data issues, you must output the data streaming through several data flows into text files for further analysis. You have the list of data flow package paths and identification strings of the various task components that must be analyzed. You need to create these output files with the least amount of administrative and development effort. Which three stored procedures should you execute in sequence?
To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.
catalog.create_folder
catalog.create_execution_dump
catalog.add_data_tap
catalog.configure_catalog
catalog.add_data_tap_by_guid
catalog.create_execution
catalog.start_execution
Now I'd like to know if the correct order is one of the following 3 please:
first option: catalog.create_execution
catalog.add_data_tap
catalog.start_execution
second option: catalog.create_folder
catalog.create_execution
catalog.add_data_tap_by_guid
third option: catalog.create_folder
catalog.start_execution
catalog.add_data_tap_by_guid
Please advise if you think that all 3 of the options are incorrect and which should be the correct order? thanks in advance guys.