How can I add a column with a default value to an existing table in SQL Server 2000 / SQL Server 2005?
Try this
ALTER TABLE Product ADD ProductID INT NOT NULL DEFAULT(1) GO