Greetings,
Situation
I'm trying to import data from a flat file into a SQL Server table. Package is straight-forward: Flat File > Row Count > Ole DB Destiination.
Source column in set as Number.
Destination column in SQL Server was set to Numeric (6,4), however, I had to modify column to be Decimal (7,4) so that way 100.0000 could be successfully imported.
Problem:
Trying to import via SSIS here is the error message causing the package to fail:
[Flat File Source [12]] Error: Data conversion failed. The data conversion for column "Adj Hi Rate" returned status value 6 and status text "Conversion failed because the data value overflowed the specified type.".Observation:
If I add a Derived Column right below Flat File and drag "ADJ Hi Rate" column, I notice it is still set as Numeric (6,4) even though the SQL Server table property has been updated.
Do I need to update anything on SSIS after the SQL Server column was updated? Any help would be greatly appreciated to get the this resolved.
Thank you in advance!
Jeannette