Debugging an SSIS package is the process of systematically monitoring, analyzing, and modifying the control and data flows within the package to ensure it performs as expected, including handling errors, managing data transformations, and validating logic. To do this;
- On the Debug menu, select Start Debugging.
- The package runs, resulting in 1,097 rows successfully added into the NewFactCurrencyRate fact table in AdventureWorksDW2022. To verify this result, select the Data Flow tab.
- Go to our database,right click on tables and refresh
- Go to dbo.NewFactCurrencyRate, right click on it and click ‘select top 1000 rows’
- Write the code select * and you will see that the total number of selections will be 1,097. This means we were successful in our project
- After the package has completed running, on the Debug menu, select Stop Debugging.
Leave a Reply