Hello Everyone,
I am using a date variable in ODI. I gave the value of 'select add_months(sysdate, -3) from dual', however there is a problem with its generated value. ODI generates the value as;
When the parameter comes to execution time, it gives an error like 'Missing parameter :21:09.0', because Oracle expects a variable when it sees ':' sign. Therefore, I need to change the date format in ODI. I tried to give value as;
add_months(trunc(sysdate), -3)
but nothing changed. It only change hour, min value to 0. ':' still exists.
Can you help me please?
Thank You