I have a table with a field of type bigint. This field store a timestamp. I want to date format the field like this :

to_char( bigint_field,'DD/MM/YYYY HH24:MI:SS')

I get the following error :

ERROR: multiple decimal points
État SQL :42601
link|improve this question

feedback

1 Answer

up vote 3 down vote accepted
TO_CHAR(TO_TIMESTAMP(bigint_field / 1000), 'DD/MM/YYYY HH24:MI:SS')
link|improve this answer
I got strange results "16/01/43210 03:32:52"... Are we in year 43210?? – Stephan Mar 30 '11 at 12:03
@Stephan: either that, or, more probably, what you are storing is a not UNIX timestamp. Could you please post a value of bigint_field and the date you think it should correspond to? – Quassnoi Mar 30 '11 at 12:04
[BIGINT] - 1301486917594 roughly equals to 2011-03-30 14:08:37,594 – Stephan Mar 30 '11 at 12:10
2  
@Stephan: seems you are storing the number of milliseconds since 1970. See the post update. – Quassnoi Mar 30 '11 at 12:12
Yeah it works! Thx for help. – Stephan Mar 30 '11 at 12:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.