• Quick thought, it might be helpful to look at the sys.dm_db_index_usage_stats view.

    😎

    SELECT

    *

    FROM sys.dm_db_index_usage_stats IUS

    WHERE IUS.object_id = OBJECT_ID(N'[SCHEMA_NAME.TABLE_NAME]');