Converting Month Number(Date Time or 4 byte integer) to Month Name(String) SSIS
问题 I need to convert month number to month name. I have date time as the date type - 2009-01-01 00:00:00.000 I also have 4-byte integer data type - 1 how do I convert this 1 to "January" for example? 回答1: i think you are in the data flow: it is really easy to get MOnth Name in a script component from Date: add a varchar column to your dataflow Mark your date column for read access enter the following script Row.[NewColumnName] = Row.[Your Date Column].ToString("MMMM"); Result: Here is a good