|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Friday, May 10, 2013 2:00 PM
Points: 24,
Visits: 94
|
|
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.
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Yesterday @ 2:32 PM
Points: 32,906,
Visits: 26,792
|
|
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 "RBAR is pronounced "ree-bar" and is a "Modenism" for "Row-By-Agonizing-Row".
First step towards the paradigm shift of writing Set Based code: Stop thinking about what you want to do to a row... think, instead, of what you want to do to a column."
For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/
For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Friday, May 10, 2013 2:00 PM
Points: 24,
Visits: 94
|
|
SORRY For guiding you wrong..i need to throw those formats as string literals in text files and not loading those in tables...
|
|
|
|