I am using MS SQL Server 2008 and have following statement to display timestamp
select CAST (DATEADD(SECOND, dbo.V_ALERTS.TIME_STAMP /1000 + 8*60*60, '19700101') AS VARCHAR(50)) as "Time_in_UTC",*
from dbo.V_ALERTS where FILEPATH like '%usb%'
ORDER BY dbo.V_ALERTS.TIME_STAMP DESC
Timestamp in Database is in UTC, how to convert to Eastern Standard Time (EST)?