There is nothing in the "Data Type" drop-down that indicates an auto-counter.
I selected int
and I am assuming there is a setting somewhere else to turn it into an auto-counter.
The idea is to have a 100% unique ID for my primary key, and every time a row is added it gets the next available ID number assigned to it.
http://img64.imageshack.us/img64/2472/primarykey.png
What you're after is called IDENTITY in SQL Server terminology.
The column must be a numeric data type (INT typically, check the range of values to what suits your needs) before you can set the column to be IDENTITY
-- you can see the listing in your screenshot, under Table Designer. There can only be one IDENTITY column per table -- this will change in SQL Server 2011 when they start support of sequences.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With