8

What does this error mean and how can I avoid it?

The datediff function resulted in an overflow. The number of dateparts separating two date/time instances is too large. Try to use datediff with a less precise datepart.

I am not using the datediff function. I am doing this query where Timestamp is a datetime type:

SELECT TOP 10 * from vSomeView 
WHERE TimestampUTC >= '2009-08-13 22:17:00'

What could I be doing wrong?

I'm using SQL Server 2008.

9
  • what's happening in the view? Commented Aug 13, 2009 at 23:23
  • Based on the name "vSomeView", it sounds like you are querying against a view. If so, what is the view definition? Perhaps it is using datepart? Commented Aug 13, 2009 at 23:23
  • 2
    Does vSomeView use the DateDiff? Commented Aug 13, 2009 at 23:23
  • I think timestamp is a reserved word.. but it looks like you are trying to use it as a column name? Either specify the table name first, and/or choose another column name. Commented Aug 13, 2009 at 23:27
  • 1
    Please post the view definition. Also, please check the objects referenced in the views, on the off-chance that they're also views or maybe even functions. Commented Aug 14, 2009 at 13:56

5 Answers 5

12

SQL Server may be doing a DATEDIFF internally for the comparison, and if the two dates are much more than 68 years apart (and the internal DATEDIFF is by seconds), DATEDIFF can error as the output of DATEDIFF is an INT.

I've bumped into this before (using DATEDIFF directly) and resolved it by casting DATETIMEs to DECIMALs as follows:

DECLARE @d1 DATETIME
DECLARE @d2 DATETIME

DECLARE @n1 AS DECIMAL(38,20)
DECLARE @n2 AS DECIMAL(38,20)

SET @d1 = '2 Jan 2000 00:00:02'
SET @d2 = '1 Jan 2000 00:00:00'

-- @n1 and @n2 will hold the datetime in fractional form. The integer part
-- is the #days since 1 Jan 1900, whilst the fractional part is the time in
-- 1/86400's of a second (24 hours = 86400 seconds, so a fraction of 0.5
-- represents 12:00:00 noon precisely.
SELECT @n1 = CAST(@d1 AS DECIMAL(38,20)), @n2 = CAST(@d2 AS DECIMAL(38,20))

-- Now manipulate the fractional and integer parts of the time
-- to get the final seconds difference.
SELECT CAST(86400 AS DECIMAL(38,20)) * (@n1 - @n2)
Sign up to request clarification or add additional context in comments.

2 Comments

I don't think it works this way. If TimestampUTC is a datetime(which da says it is) or smalldatetime, SQL will convert '2009-08-13 22:17:00' into the same datatype, and then it's just a simple binary value comparison of the internal representations of a datetime.
You might be right. I've not got access to a 2008 box, but I do to 2005. Didn't have time to experiment at the time, but doing some poking now and I can't get the error described to occur. It would be useful to see the definition of the VIEW, however the method above may be able to resolve the issue if the failing DATEDIFF can be traced.
4

I had the same issue because one of the records in my table had a default value for a datetime field of 1900-01-01 00:00:00.000.

SELECT *
FROM Terminal 
WHERE DATEDIFF(SECOND, LastCheckIn, GETDATE()) < 30

DATEDIFF in the where clause will be evaluated for all the records in the table and will overflow on the LastCheckIn with value 1900-01-01 00:00:00.000

I solved it by first evaluating DATEDIFF for a difference in YEARS < 1

This is the final query:

SELECT *
FROM Terminal 
WHERE
DATEDIFF(YEAR, LastCheckIn, GETDATE()) < 1
AND
DATEDIFF(SECOND, LastCheckIn, GETDATE()) < 30

2 Comments

I could't get this to work. I'm using sqlserver 2012. IIRC, SQL Server does not garantee order in the evaluation of where clause, and in my case, seems to always evaluate both conditions.
Thank you for this answer! I had the same issue where a date in the table was the year 0017 instead of 2017... Updating the date fixed the overflow issue.
3

SQL Server 2016 added DATEDIFF_BIG() which returns bigint.

Comments

2

Thank you all for the pointers!

They made me recheck the vSomeView and it turns out that the vSomeView was doing a join between a view and some other tables. That view was doing a datediff to convert some datetime into a posix-style timestamp (seconds since epoch). Once I removed it, the query runs fine.

Comments

0

I created function which should bypass this limitation on SQL versions lower than SQL Server 2016 see here.

It should work similar to DATETIMEDIFF_BIG in simple scenarios.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.