Experts, IN SSIS I created a user variable to return the number of the month: Month( @[System::StartTime] ) If I need it padded, then I use (Thanks to the smart people at EE): Right("0" + (DT_STR, 2, 1252) Month( @[System::StartTime] ), 2) However I need to get the name of the month. I need...