Hi,I'm try execute the following query on a sql 2000 database CREATE NONCLUSTERED INDEX [_dta_index_STOCK_TRAN_MASTER_6_1794105432__K12_K4_K6_2] ON [dbo].[STOCK_TRAN_MASTER] ( [TENDERED] ASC, [SALES_TYPE] ASC, [INVOICE_NO] ASC)INCLUDE ( [DELIVERY_DATE]) WITH (SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF) ON [PRIMARY]
but get the following err msg.Server: Msg 170, Level 15, State 1, Line 7Line 7: Incorrect syntax near 'INCLUDE'.
Can anyone tell me what the reserved word for INCLUDE is on sql 2000, it does seem to work on sql2005 though.Many Thanks