I'm querying a SQL Server table that has this column:
dateCreated(numeric(19, 0), null)
It appears this is UNIX epoch time. I want to select everything from the table and convert the dateCreated
column to something appropriate for a report extract. I've tried the following via some other posts I found:
How to convert Epoch time to date?
SELECT
DATEADD(S, t.dateCreated, CAST('1970-01-01' as datetime)),
t.user, t.machine
FROM
table t
Any variant of this produces an error
Arithmetic overflow error converting expression to data type int
How can I convert this column to datetime
format?