Hi, Grimmi!
If I understood your question, you want to create in sql server via the Enterprise manager a table that will have the Field with authomatic incremented number like Autonumber in access?
In this case you need to do the next thing:
Create new table
Add new field with the next charateristics:
'ColumnName' = 'RecID'
'DataType'=int
'Lenght','Precision','Scale' - will be filled authomatically
'AllowNulls'=false
'Identify'=true
'Indentify Seed' and 'Indentify Increment' will be filled automatically
Add some new fields just for demo..
Now , if you will browse this table and add new records
your 'RecID' field will be filled out automatically...
DOn't try to put values into the RecID
You will get error...
and don't entirely don't need to give the default value - it will care for this automatically
My best regards,
Issahar