Tente isto:
ALTER TABLE MyTable ADD CONSTRAINT
DF_MyTable_Inserted DEFAULT GETDATE() FOR INSERT_DATE
GO
Isso pressupõe que sua tabela se chama
MyTable
, a coluna é INSERT_DATE
, e o nome da restrição deve ser DF_MyTable_Inserted
ALTER TABLE MyTable ADD CONSTRAINT
DF_MyTable_Inserted DEFAULT GETDATE() FOR INSERT_DATE
GO
MyTable
, a coluna é INSERT_DATE
, e o nome da restrição deve ser DF_MyTable_Inserted