Hi selva1587,
First, I want to confirm whether you are talking about Physical Reads/sec, Logical Writes/sec, Logical Reads/sec in SQL Server Activity Monitor. These values stand for the rate per second of action (read, write) by the query, we can select all values to
check all the queries according to the values (or one special value to check the queries according to this value), they are not threshold. The information is derived from the union of sys.dm_exec_requests and sys.dm_exec_query_stats, and includes queries in
process and queries that finished during the time period. You can also get all data from these DMVs and aggregate them to get the data you want. For more detail information, please refer to the following link:
Activity Monitor:
http://msdn.microsoft.com/en-us/library/cc879320(v=sql.105).aspx
sys.dm_exec_requests (Transact-SQL):
http://msdn.microsoft.com/en-us/library/ms177648.aspx
sys.dm_exec_query_stats (Transact-SQL):
http://msdn.microsoft.com/en-us/library/ms189741.aspx
Allen Li
TechNet Community Support
