Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Which one:

  • datetime
  • datetime2

is THE recommended way to store date and time in SQL Server 2008+?

I'm aware of differences in precision (and storage space probably), but ignoring those for now, is there a best practice document on when to use what, or maybe we should just use datetime2 only?

share|improve this question

6 Answers

up vote 126 down vote accepted

The MSDN documentation for datetime recommends using datetime2. Here is their recommendation:

Use the time, date, datetime2 and datetimeoffset data types for new work. These types align with the SQL Standard. They are more portable. time, datetime2 and datetimeoffset provide more seconds precision. datetimeoffset provides time zone support for globally deployed applications.

datetime2 has larger date range, a larger default fractional precision, and optional user-specified precision. Also depending on the user-specified precision it may use less storage.

share|improve this answer

DATETIME2 has a date range of "0001 / 01 / 01" through "9999 / 12 / 31" while the DATETIME type only supports year 1753-9999.

Also, if you need to, DATETIME2 can be more precise in terms of time; DATETIME is limited to 3 1/3 milliseconds, while DATETIME2 can be accurate down to 100ns.

Both types map to System.DateTime in .NET - no difference there.

If you have the choice, I would recommend using DATETIME2 whenever possible. I don't see any benefits using DATETIME (except for backward compatibility) - you'll have less trouble (with dates being out of range and hassle like that).

Plus: if you only need the date (without time part), use DATE - it's just as good as DATETIME2 and saves you space, too! :-) Same goes for time only - use TIME. That's what these types are there for!

Marc

share|improve this answer
27  
Be careful when adding a .NET DateTime value as a parameter to an SqlCommand, because it likes to assume it's the old datetime type, and you'll get an error if you try to write a DateTime value that's outside that 1753-9999 year range unless you explicitly specify the type as System.Data.SqlDbType.DateTime2 for the SqlParameter. Anyway, datetime2 is great, because it can store any value that can be stored in the .NET DateTime type. – Triynko Oct 26 '10 at 18:16
2  
@marc_s - Isn't that what null is for? – JohnFx Jan 17 '11 at 17:15
3  
@JohnFx: try setting a .NET DateTime struct to NULL ..... – marc_s Jan 17 '11 at 17:40
3  
@Marc: There is a difference in the mapping to .Net types: DateTime2 is isomorphic with the .Net DateTime type, so no 'out of range' errors and probably some really tiny performance improvement as no conversion required. – piers7 Jan 31 '11 at 0:58
9  
Lol, I just tried to upvote my own comment (above), before I realized it was my own comment (made over a year ago). I'm still dealing with the .NET framework's dumb design decision to TRUNCATE all DateTime values by default when passed as SqlParameters unless you explicitly set it to the more precise SqlDbType.DateTime2. So much for automatically inferring the correct type. Really, they should have made the change transparent, replacing the less precise, less efficient, limited-range implementation, and kept the original "datetime" type name. See also stackoverflow.com/q/8421332/88409 – Triynko Dec 8 '11 at 18:25
show 4 more comments

I concurr with @marc_s and @Adam_Poward -- DateTime2 is the preferred method moving forward. It has a wider range of dates, higher precision, and uses equal or less storage (depending on precision).

One thing the discussion missed, however...
@Marc_s states: Both types map to System.DateTime in .NET - no difference there. This is correct, however, the inverse is not true...and it matters when doing date range searches (e.g. "find me all records modified on 5/5/2010").

.NET's version of Datetime has similar range and precision to DateTime2. When mapping a .net Datetime down to the old SQL DateTime an implicit rounding occurs. The old SQL DateTime is accurate to 3 milliseconds. This means that 11:59:59.997 is as close as you can get to the end of the day. Anything higher is rounded up to the following day.

Try this :

declare @d1 datetime   = '5/5/2010 23:59:59.999'
declare @d2 datetime2  = '5/5/2010 23:59:59.999'
select @d1 as 'IAmMay6BecauseOfRounding', @d2 'May5'

Avoiding this implicit rounding is a significant reason to move to DateTime2. Implicit rounding of dates clearly causes confusion:

share|improve this answer
@AaronLS -- thanks for that catch! I just happened to see your edit hit the SO front page....random. – EBarr Aug 17 '12 at 19:20

datetime2 wins in every aspect

  • better Accuracy
  • larger range of values
  • smaller storage space

enter image description here

source : MCTS Self-Paced Training Kit (Exam 70-432): Microsoft® SQL Server® 2008 - Implementation and Maintenance Chapter 3:Tables -> Lesson 1: Creating Tables -> page 66

share|improve this answer

DateTime2 wreaks havoc if you are an Access developer trying to write Now() to the field in question. Just did an Access -> SQL 2008 R2 migration and it put all the datetime fields in as DateTime2. Appending a record with Now() as the value bombed out. It was okay on 1/1/2012 2:53:04 PM, but not on 1/10/2012 2:53:04 PM.

Once character made the difference. Hope it helps somebody.

share|improve this answer

Use datetime if do not need such precision as datetime2. Using datetime2 always is like using int32 instead of byte.

IPD: and datetime had larger year diapason

share|improve this answer
1  
I remember seeing once that using Int32 instead of Byte may actaully perform better - with explaination being that we live in 32 bit world... Don't really remember the details. – Mikeon Aug 26 '09 at 13:24
8  
Actually this is not correct. Even though datetime2 has more precision, the storage size is less. datatime2 allows the user to specify the precision and uses 6 bytes for precisions less than 3; 7 bytes for precisions 3 and 4. All other precisions require 8 bytes. datetime always uses 8 bytes. – Adam Porad Dec 10 '09 at 21:16
3  
datetime2 is more accurate and uses less space. Apart from legacy support datetime is of no use. – Raynos Nov 30 '10 at 16:56
1  
datetime2 offers the best correspondence to the .NET DateTime type, supporting the full range of allowed values, so it is less error-prone. datetime2 also aligns with the SQL standard. – Triynko Nov 21 '11 at 17:28
@Mikeon many CPUs will perform work only on items of the appropriate wordsize. Which for 32 bit CPUs as word is 32 bits. Some extra work must be done to accomodate padding or dealing with the remaining 24 bits. Older CPUs take real real clock cycles to do this, newer ones tend to handle it with in the same cycle it is used or loaded (also alignment issues). As for the sql Datetime2, vs sql Datetime and the .net Datetime. All seem to be 64 bit values, just with differing precisions and defaults. Tsql Datetime2 and the .net Datetime go from year 0 to 10000 with 100 nanosecond precision. – Sqeaky Jun 12 '12 at 17:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.