• I'm sorry to say it, but the result is almost exactly the same:

    CREATE TABLE [dbo].[ACCESS] (

    [TEMPFLAG] bit NOT NULL DEFAULT (0),

    varchar(50) NOT NULL,

    [DESCRIPTN] varchar(50) NOT NULL)

    GO

    CREATE INDEX ON [ACCESS] (,) WITH FILLFACTOR = 90

    I notice though that the comma is on the outside of the square brackets - does that not remove the column name from the possible problem?