I want to retrieve the last time table was updated(insert,delete,update).
I tried this query.
SELECT last_user_update FROM sys.dm_db_index_usage_stat
Why not just run this: No need for special permissions
SELECT name, object_id, create_date, modify_date FROM sys.tables WHERE name like '%yourTablePattern%' ORDER BY modify_date