Storing the ErrorDescription on DFT -> Flat file error output
Also, is there a way to email the error description / rows in the data flow
task?
Thanks,
Jason
Also, is there a way to email the error description / rows in the data flow
task?
Thanks,
Jason
You can find out about the error column when you open the advanced editor of the transform you get the error from. You find column ids for the output fields there.
The simplest way to get the error description (programmatically) in the data flow is by using the GetErrorDescription method of the IDtsComponentMetadata90 interface in the Pipeline.Wrapper namespace.
You could run your error output through a Script component (which provides convenient access to the ComponentMetadata) and use GetErrorDescription to add an additional string column containing the description to the error information.
-Doug
-Jamie