vote up 0 vote down star

I'm trying to CREATE a TABLE with an attribute of type DATE in Microsoft SQL Server 2008. However, when I execute the query,

I get the error:

Column, parameter, or variable #3: Cannot find data type DATE.

I consulted the documentation, and it indicated that DATE is a valid type in SQL Server. It works if I replace "DATE" with "DATETIME". My guess is I'm missing something really simple, but I just started learning SQL and SQL Server; does anybody have an idea?

flag

2 Answers

vote up 4 vote down check

If you really want to use DATE, you could change the compatibility level of the database.

ALTER DATABASE dbname SET COMPATIBILITY_LEVEL = 100

That would switch the database to 2008 compatibility, and you should be able to use the DATE datatype.

See http://msdn.microsoft.com/en-us/library/bb510680.aspx

link|flag
vote up 2 vote down

It is possible that your database is 8.0 or 9.0 compatible. In this case you cannot use DATE type.

link|flag
If so, are there any alternatives? – Master Zota Nov 6 at 2:47
1  
Yes, you can use DATETIME type. – Alex_L Nov 6 at 2:51
Or preferably: switch the database compatibility level to "100" (SQL Server 2008) to actually use the SQL Server 2008 features! – marc_s Nov 6 at 5:43
Sure. I think database owners may have some reasons to keep this database in old compatibility mode, but if not - this is the solution, too. – Alex_L Nov 6 at 6:04

Your Answer

Get an OpenID
or

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