I've been reading all over the place that DATE type should work starting with SQL Server 2008, for example: stackoverflow.com/a/126984/1155650
I'm using SQL Server 2008 R2 and for some reason the DATE type is not recognized. Am I missing something?
When I execute this:
SELECT CONVERT(DATE, GETDATE())
I get this error message:
Msg 243, Level 16, State 1, Line 1
Type DATE is not a defined system type.