Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

truncation error

Status
Not open for further replies.

rjhe22

Programmer
Jul 1, 2009
7
0
0
GB
hi
have a derived column with this in it BLOOM_COUNTRY != "" ? "BLOOMBERG" + BLOOM_COUNTRY : CO1
before that i have a dervided column that set co1= ISS_NAME a field in the table

im getting the following error
[Country [22353]] Error: The "component "Country" (22353)" failed because truncation occurred, and the truncation row disposition on "input column "CO1" (27040)" specifies failure on truncation. A truncation error occurred on the specified object of the specified component.



[SSIS.Pipeline] Error: SSIS Error Code DTS_E_PROCESSINPUTFAILED. The ProcessInput method on component "Country" (22353) failed with error code 0xC020902A while processing input "Derived Column Input" (22354). The identified component returned an error from the ProcessInput method. The error is specific to the component, but the error is fatal and will cause the Data Flow task to stop running. There may be error messages posted before this with more information about the failure.


anyone any ideas
 
What is the field length of the destination column? Sounds like you have exceed that limit with the concatenated values in your derived column. You will need whatever length the BLOOM_COUNTRY column was + the appended length of BLOOMBERG.

To see the error, set the redirect on for truncation errors and send the rows out to a data viewer to see the culprits.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top