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
You can set the column's default value with the GETDATE(), with this you will get the current DateTime on every new row insert.
GETDATE
Try setting GETDATE() to be the DEFAULT value for the column.
GETDATE()
DEFAULT