Guys,
Is there any way to get timestamp of the last DML - delete, insert, update operation performed on a table. I tried 'sysobjects' it only holds create date 'crdate'.
To get around this I have added new columns DATE_TIME_CREATED, which has default value of getdate() each time when new row is inserted or updated, but it does not cover scenario of deleting a row.
Any suggestions and inputs would help.
Thanks