Microsoft
Software
Hardware
Network
Question : Usin SSMS how do I add a unique ID field?
If I were to create a new table using SQL Server Management Studio, how would I go about making the first column a unique auto generated int value? When ading a record I want it automaticaly populated with a unique value that's one larger than the previously added row.
Thanks,
newbieweb
Answer : Usin SSMS how do I add a unique ID field?
set up the column with the IDENTITY property choose your seed value (1) and increment value (1)
choose a datatype of Integer (or bigint)
Random Solutions
Server tag is not well formed
connect to sql database using php
Two Inboxes in Outlook 2007
Configure Cisco Linksys RV042 to communicate with second network
Strange windows user account 'tsinternetus6r' in Windows Vista !?
Mac/Unix/Linux compatibility with Windows 2008 R2 domain authentication
Pulling recent posts in two columns
3 monitors on i5-650 on Gigabyte GA-H55M-UD2H
List all databases and all tables within all those databases and all columns within those tables
Line Breakup in VB.Net For writing a lengthy SQL Script ..~