Hi,
With the following quiry i get the list of top 10 most expensive queries with their SQL statements.
select top 10 * from sys.dm_exec_query_stats
cross apply sys.dm_exec_sql_text(sql_handle)
order by max_logical_reads desc
But how can I extract their object names ?