I have a table and one of the columns is \"Date\" of type datetime. We decided to add a default constraint to that column
Alter table TableName alter column
You're specifying the table name twice. The ALTER TABLE part names the table. Try: Alter table TableName alter column [Date] default getutcdate()