It may be useful to convert a field inside the formula box of the derived column transformation.
Here is a example to convert the integer field [MyIntegerField] to a string and add text information next to the value :
(DT_STR,2,1252) [MyIntegerField] + " <-- converted value".
DT_STR indicates the data type I want (String)
2 indicates that the length of the string will be of 2 character
1252 indicates the code page I want (standard latin)
The result may look like : "139 <-- converted value".