Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Date format in informatica

Status
Not open for further replies.

InformaticaDW

Programmer
Dec 18, 2008
1
0
0
US
hello,

I want to know how to convert string data type format 'mmddyyyy' date column into string data type format 'ccyymmdd' type in informatica ?

Thanks,
Ram
 
You can use expression transformation to convert date into required format.

Use function TO_DATE(datefieldname,'format')

To_date(fieldname,'ccyymmdd')

 
You'll have to pull out the individual pieces and rearrange them or possibly convert them to date fields and reformat as show above.

"I think we're all Bozos on this bus!" - Firesign Theatre [jester]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top