I have two columns in a table of a SQL server DB that I would like to autoincrement when new fields are added. However, Managment Studio wont allow me to set two columns to
You could make the second field a calculated field based on the first.
Or make an INSERT trigger than programatically generates the value for the second.