Is there are more terse way of writing (SQL server 2008)
alter table newclaims alter column id int not null go alter table newclaims add primary key(id) the table is very large and this will have to make two passes over it and I'd like to know if I can change the nullability and add the primary key all in one statement.