I have an issue importing date from a Tririga database into a SQL database. Mainly I cant convert the date properly and it looks like is not the commont format I have seen around.
Eg date value incomming 775724400000
Running something like select to_date('765187200000', 'DDMMYYYYHH24MISS') my_date FROM dual; give me an error ORA-01847: day of month must be between 1 and last day of month 01847. 00000 - "day of month must be between 1 and last day of month"
I found the following info from this link seems to be also from tririga link_help
And the size of the number are about 10 digits meanwhile this one is 12 and I know for fact this dates should be from the past 10 years (most of them) I can't seem to find anything that gives me an answer how to convert this into proper dates.
Any suggestions?