I am having difficulty converting a data column into a char structure with a specific format.
My source is of data datatype and the value is in yyyy.dd.mm format. The target is in varchar(24) and expected format should be in mm/dd/yyyy format.
I use a to_char(columnname, 'mm/dd/yyyy') but it fails. Not sure what is missing.