Reputation: 76
First SSIS experience so I'm willing to accept I'm doing things completely wrong here:
Using SSIS:
What I think I have to do here is truncate the data using a "Data Conversion" transform. The problem I have is it's going to take me hours to do this in the "Data Conversion" editor window because I'm dealing with so many columns, when it would only take me a few minutes in a text editor.
Is there any way to bulk update the Data Conversion settings? Am I doing this the wrong way?
Upvotes: 1
Views: 399
Reputation: 76
The solution I ended up with was: - change the package to not fail on truncation. - Once I did this I could get rid of the transform. - in the database I created a staging table with the excel column names to import to so that I didn't have to manually match everything up in SSIS
Upvotes: 1