Informatica Expression Convert String to Date -


i need convert string date can compare in column. statement this:

decode(isnew, false,    iif (v_save_view_row_obsolete_day <>      to_date('9999-12-31 00:00:00 am','yyyy-mon-dd hh24:mi:ss'),       '9999-12-31 00:00:00', v_save_view_row_obsolete_day)) 

when validate error: error image

any ideas how fix this?

you specified 24-hour format, don't need am meridian indicator in converted date.

alternatively, add am format parameter of to_date.


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -