You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to the data handling accuracy "improvements" in 2016, datetime values are made more "accurate" when converting to datetime2 since datetime is actually granular to 1/300 of a second.
When you read value A the server will give the driver a time value which for example ends in .003 seconds. When you query the database against this same column we then pass back that value which ends in .003 seconds, however when the server makes the comparison it will compare the value we passed with the stored value of .00<1 third of a millisecond>. Which will result in an inequality since 0.003 != 0.0033333333...
I think that explains what the issue is. I see two possible fixes, and suggest we implement both:
avernet
changed the title
Export from Forms Admin doesn't produce a zip on SQL Server 2022
Export from Forms Admin doesn't produce a zip on SQL Server
May 2, 2024
It looks like a time zone issue to me, but I haven't quite gotten to the bottom of it. A few data points:
java.sql.Timestamp
.java.time.Instant
, which is a UTC time.Instant
to aTimestamp
withTimestamp.from(...)
.+1 from customer
The text was updated successfully, but these errors were encountered: