Is it possible to auto increment a column in SQL Server WITHOUT it being a primary key?
If yes how can this be done.
Thanks
Declare the column with the IDENTITY keyword, and simply do not create a PRIMARY KEY constraint on it.