SQL Server 2008 does not yet know the sequence - it will be introduced in SQL Server 2012 (fka "Denali").
For almost the same result, use the INT IDENTITY column:
CREATE TABLE dbo.YourTable (YourID INT IDENTITY(1,1) NOT NULL PRIMARY KEY, .... )
The IDENTITY column is automatically populated by SQL Server when a new row is inserted into the table. SQL Server ensures that it grows monotonously, starting from 1, increasing by 1 (you can set them at different values).
Basically, when you insert a row into such a table, you should not indicate the IDENTITY column in the list of columns to insert values ββinto - SQL Server will do this automatically for you.
source share