Is there a way to define a datetime column and populate it automatically when a row is inserted, without having to use a trigger?
The value would be the point in time w
Yes use a default constraint:
mydatecolumn datetime constraint DF_myDate DEFAULT (getdate())