March 1, 2013 at 10:50 am
I need to work on SSIS in converting date format to string literals.
1)Input:2013-03-01
Output:03-March-2013
2)First day of the following month
Input:2013-01-01
Output:2013-02-01
(or)
input:2013-12-29
Output:2014-01-01
I need to satisfy both conditions in a single query
I need to work on both the coniditions but i am unbale to solve it.
Please help me on both.
Thanks in advance.
March 2, 2013 at 7:16 am
manibad (3/1/2013)
I need to work on SSIS in converting date format to string literals.1)Input:2013-03-01
Output:03-March-2013
2)First day of the following month
Input:2013-01-01
Output:2013-02-01
(or)
input:2013-12-29
Output:2014-01-01
I need to satisfy both conditions in a single query
I need to work on both the coniditions but i am unbale to solve it.
Please help me on both.
Thanks in advance.
From what I understand, formatting dates in SSIS requires the concatenation of date parts. I suspect doing the date math in SSIS is a bit more difficult.
With that in mind, I'd do this in T-SQL query. Let us know if that'll fill your need.
My concern is, why do you want to do #1 at all? If it's to store formatted dates in a table, be advised that's one of the worst practices of all.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 2, 2013 at 12:42 pm
SORRY For guiding you wrong..i need to throw those formats as string literals in text files and not loading those in tables...
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply