How can I do the following in informatica?
I have a source table as follows
start and end dates are in mm/dd/yyyy
col1 col2 start_date end_date
----- ----- ----------- ---------
x y 01/01/2005 03/01/2005
z u 05/01/2003 09/01/2003
target should be as follows
col1 col2 month_year
x y 012005
x y 022005
x y 032005
z u 052003
z u 062003
z u 072003
z u 082003
z u 092003
I have a source table as follows
start and end dates are in mm/dd/yyyy
col1 col2 start_date end_date
----- ----- ----------- ---------
x y 01/01/2005 03/01/2005
z u 05/01/2003 09/01/2003
target should be as follows
col1 col2 month_year
x y 012005
x y 022005
x y 032005
z u 052003
z u 062003
z u 072003
z u 082003
z u 092003