How can I add a column with a default value to an existing table in SQL Server 2000 / SQL Server 2005?
--Adding Value with Default Value ALTER TABLE TestTable ADD ThirdCol INT NOT NULL DEFAULT(0) GO