Which one:
is the recommended way to store date and time in SQL Server 2008+?
I\'m aware of differ
According to this article, if you would like to have the same precision of DateTime using DateTime2 you simply have to use DateTime2(3). This should give you the same precision, take up one fewer bytes, and provide an expanded range.