I have a User Variables Activity in datastage job like this.
Name | Expression |
---|---|
START_DT | If START_DT = "" Then Ereplace(Oconv(@DATE-1, "D-YMD[4,2,2]","-","") ELSE START_DT |
START_DT2 | If START_DT = "" Then Ereplace(CurrentDateRT("")[1,4],"-","") ELSE START_DT |
JOB_INVOCATION | DSJobName : "_" : if count(DSJobInvocationId, TYPE) <> 1 then TYPE else DSJobInvocationID |
but I don't know what these expression mean.
like Where @Date is come frome? ( I guess that is the internal date when the program started.)
but I couldn't find CurrentDateRT is come from?
also, where those DSJobName, DSJOBInvocationId variable come from?
I coun't find that variable definition area...
Where can i find that area...??
and also How can I "Oconv(@DATE-1, "D-YMD[4,2,2]","-","") " expression to Oracle?