I am having a csv file which contains 0 in timestamp column in source , when it is being inserted into oracle through informatica it is populated as NULL values. I am not sure whether this is correct . whether it should be 0 or NULL or any other value. Could anyone confirm on this.
0doesn't represent a timestamp, what would you suggest it does other than givingNULL? An error is all I can imagineIIF(col=0, null, col)to replace 0 with null or you cna use sysdate too or any default date.