Forum Replies Created

Viewing post 16 (of 16 total)

  • RE: at the breaking point. (in more ways than one)

    This may do what you need.

    Create Table Testing(A nvarchar(10) not null,B nvarchar(10) not null,

    C int identity)

    go

    CREATE UNIQUE CLUSTERED INDEX [Testing_INDX] ON [dbo].[Testing]([A],, [C]) ON [PRIMARY]

    GO

    insert Testing (A,B)values('A','A')

    insert Testing (A,B)values('A','A ')

    insert...

Viewing post 16 (of 16 total)