I am trying to get the error column name using the script component but am getting an error for the below line:
var componentMetaData130 = this.ComponentMetaData as IDTSComponentMetaData130;
Row.ErrorColumnDescription = this.ComponentMetaData.GetIdentificationStringByID(Row.ErrorColumn);
The type or namespace 'IDTSComponentMetaData130' could not be found.
If anyone can guide me for the same.
I don't think "as" is legal syntax in a Script Component. Can you try removing that so the code is:
EDIT: Ah, my mistake. I think I've found the code you're referring to. Does replacing the "var" with "IDTSComponentMetaData130" work: