How can I add a column with a default value to an existing table in SQL Server 2000 / SQL Server 2005?
Example:
ALTER TABLE [Employees] ADD Seniority int not null default 0 GO