Please run the following query to know that WITH LastTableAccess ( [object_id] , readDate , writeDate ) AS ( SELECT [object_id] , last_user_seek ,NULL FROM sys.dm_db_index_usage_stats WHERE database_id = DB_ID () UNION ALL SELECT [object_id] , last_user_scan ,NULL FROM sys.dm_db_index_usage_stats WHERE...