Problem: I have learnt SQL using an Oracle database at university and tried to use the keyword sequence when developing SQL for MSSQL.
Solution: MSSQL does not support Sequence and after some research I found a solution from this article:
http://www.pcbuyersguide.co.za/showthread.php?t=4104
The solution is to use this code
using Identity will allow a start point and to increment each record that is added to the databse.CREATE TABLE [dbo].[Customers] (
[pk_ID] [int] IDENTITY (1, 1) NOT NULL ,
[sValue] [char] (10) NULL ,
[sDesc] [char] (10) NULL ,
[iOrd] [numeric](18, 0) NULL
) ON [PRIMARY]
GO

