Hi SAS experts,
I was routinely converting DATE given in the format:
| Number ID |
Old_Format |
| 1 |
12MAR2025:00:00:00.000 |
| 2 |
17MAR2025:00:00:00.000 |
using
proc sql;
select datepart(Old_Format) as New_Format format=mmddyy10.
from DATASET;
And that was working well, but suddenly I've started receiving the following error:
ERROR: Some character data was lost during transcoding in the dataset DATESET. Either the data contains characters that are not representable in the new encoding or truncation occurred during transcoding.
I am not able to see what changed.
Any ideas are appreciated.
Thank you very much for your time.
Batta