Using the template : SQL Server 2012 Performance (WMI)
I have a SQL Server where we see high number of full scans on base tables or indexes.
Is it possible to load a template that have a monitor that will tell me which sql queries that are causing the problems and delays?
(Without using the tools in SQL Management Studio)
Reference:
"Access Methods: Full scans\sec"
This counter monitors the number of full scans on base tables or indexes. Values greater than 1 or 2 indicate that we are having table / Index page scans. If we see high CPU, then we need to investigate this counter. Otherwise, if the full scans are on small tables, we can ignore this counter. A few of the main causes of high Full Scans/sec are: missing indexes and too many rows requested. Queries with missing indexes or too many rows requested will have a large number of logical reads and an increased CPU time.
Reidar