I am trying to create a SQL Server 2008R2 Table column with automatically calculated current datetime for every row I insert.
I set Computed Column Specification valu
Try setting GETDATE() to be the DEFAULT value for the column.
GETDATE()
DEFAULT