All I want to learn is how to atleast debug if not resolve job failures in ssis 2005. I want to know how can I learn all this as I have a basic knowledge of SSIS and sql.
Any guidance is welcome 🙂
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
SSIS is divided into “control flow” and “data flow”
On the control flow you can use breakpoints as you do on your c# application for example. Just right click a task and select “add breakpoint”. There are several options, all of them are self explicatory (like before action, after action and so on)
On the data flow, you can’t use breakpoints, you have to use data viewers. Data viewers display data between two components in a data flow, you can add a grid between your oledbsource and your oledbdestination and see the data passing through.
Links: