When running this sample

CREATE TYPE LocationTableType AS TABLE 
    ( LocationName VARCHAR(50)
    , CostRate INT )
GO

from SQl Manager (SQL Server 9) I get this error:

Msg 156, Level 15, State 1, Line 2
Incorrect syntax near the keyword 'AS'.

sp_configure 'clr enabled' is already set to 1 and the service was restarted.

What went wrong?

Thanks, P

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

(SQL Server 9)

User-defined table types are a feature introduced in SQL Server 2008, version 10.

CREATE TYPE in SQL Server 2005

CREATE TYPE in SQL Server 2008

link|improve this answer
That did it, thanks! – user705748 Apr 13 '11 at 11:06
feedback

Your Answer

 
or
required, but never shown

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