开发者

Is there a decent technique for SSIS Derived Column date formatting?

开发者 https://www.devze.com 2023-01-01 19:43 出处:网络
I jus开发者_运维问答t had to write the most redonkulous expression in an SSIS Derived Column to get dates formatted like "01-JAN-2010".  It lookes like this:

I jus开发者_运维问答t had to write the most redonkulous expression in an SSIS Derived Column to get dates formatted like "01-JAN-2010".  It lookes like this:

      

Is there a decent technique for SSIS Derived Column date formatting?

There's got to be a better way... isn't there?


Consider using a script component and then Row.stringcol = Row.datecol.ToString("dd-MMM-yyyy") to populate a new string column in the data flow.


If you want to use expressions, you could use this instead:

RIGHT("0" + (DT_WSTR, 2)DAY(ASSIGNMENT_BEGIN_DATE), 2) + "-" + SUBSTRING("JANFEBMARAPRMAYJUNJULAUGSEPOCTNOVDEC", (3 * MONTH(ASSIGNMENT_BEGIN_DATE)) - 2, 3) + (DT_WSTR, 4)YEAR(ASSIGNMENT_BEGIN_DATE)

Didn't say it was better. It's just different and shorter. Use a Script as Cade suggested if you want better control.


Okay, now I feel like a Donkey. The easy solution is to make my Data Source a select statement in which I simply handle that column like this:

     SELECT to_char(assignment_begin_date, 'dd-MON-yyyy') assignment_begin_date FROM ...

The RDBMS is Oracle, btw.

Then I don't need to do a derived column or a script.

I have self-administered a dope-slap for not thinking of it earlier. Thanks to all for the help.

0

精彩评论

暂无评论...
验证码 换一张
取 消