I am trying to create a SSIS package that will import Excel data to SQL Server 2000 database.

One of the column in Excel sheet is in Percentage format and I wish to import that column in string format so it displays 45.22% instead of 0.4522.

Is there a way of doing this within SSIS?

link|improve this question

71% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Use derived column to add new column based on expression:

(DT_WSTR,20)(COL1 * 100) + "%"

It multiplies COL1 by 100, converts it to WSTR (unicode string) and adds percent-sign at the end.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.