Dealing with a tricky situation where backend data is always stored in UTC time while our front-end data is in CST. Unfortunately, I don't have access to the system handling this 'black box' conversion.
Trying to replicate this setup in our data warehouse based in Europe (CET), so traditional "local" conversion won't suffice.
Seeking advice on the most direct and foolproof method to accurately convert UTC time (available in either epoch milliseconds or '2015-01-01 00:00:00' date format) to Central Standard Time (which could be either 5 or 6 hours behind depending on Daylight Savings).
Avoiding the common solutions of converting to 'local' time or simply subtracting 6 hours, as they are not reliable throughout the year.
If anyone has innovative suggestions for addressing this widely encountered issue, please share as my research has yielded no satisfactory answers thus far.