Link to home
Start Free TrialLog in
Avatar of asrithap
asrithapFlag for United States of America

asked on

SSIS Error Handling

I am parsing a flat file and loading data into SQL Server 2008 R2 using SSIS package.  A flat file contains more than 1 row.
After parsing the flat file I am loading the data into temp table which contains about 370 columns, all the columns are varchar.  From the temp table I need to load to 5 different tables.  I am using For Each Loop Container to loop all the rows in the temp table.  I am using Execute SQL Task to load data into each table in the container. I am using SQL Server Stored Proc to insert data into SQL Server. Sometimes if data is bad means I’ll get error in 1st or 2nd or 3rd table.
My questions are how I can get error information about which column and description which inserting into database table with bad data.
In this process I need to get the information about the bad records and store in the error table. Process should continue without break and store the good records in the table.
ASKER CERTIFIED SOLUTION
Avatar of Anuj
Anuj
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of asrithap

ASKER

partial