Redirecting error rows using ssis

preview_player
Показать описание
Video talks about
Every executable execution in ssis is event based.
Configure error output:
Data flow task pipeline error handling implemented with configure error output
a. Fail component
b. Ignore failure
c. Redirect row
Fail component:
If any error occurred in the data flow processing, data flow terminated and component failed
Ignore failure:
If any error occurred in the data flow processing, error causing rows (bad rows) will be ignored and good rows continued in the data flow.


Redirect row:
Error causing rows (bad rows) will be redirected to other transformation or destination adaptor and data flow continued with good rows.
In data flow pipe line
Two types of errors
a. Common errors processing logic related
b. Truncate errors –data type sine related

Step by step SQL Training videos
Step by step SSIS Training videos
SSIS Tutorial

For more videos
Рекомендации по теме
Комментарии
Автор

Thanks. This is functionality I didn't even know existed. This is very helpful. Thanks.

tomc.
Автор

Awesome explanation using simple steps. Anyone can easily understand

rameshk
Автор

Is there a way to also export the actual 'error description' ?

KevinMullarkey
Автор

I am loading say 1000 records from source to destination OK from a text file to SQL Server
table. OK, so while loading I want to load in batches 10 records. what happens is in every
batch there is an error record. So even if you load in batch, if there is an error record all the
10 records it will send to error, right? That batch will fail. OK, I don't want to load all the 10
records again for each batch, so if there is one error record then I just want to send that
error record to error table and rest all I want to load it. I don't want to fail the whole batch. how can we do in SSIS

GiridharSaiChimata