2010-12-03 66 views
0

我試圖找出動態管理視圖,這將使SQL Server 2005年SQL服務器 - 動態管理視圖 - 全表掃描

  1. 該表經過全表掃描
  2. 以下信息導致該表進行全表掃描拍攝完成掃描查詢返回的記錄
  3. 掃描的
  4. 時間
  5. 時間查詢
  6. 掃描時表中的記錄總數。

我嘗試了一些DMV文章,但無法找出所需的DMV查詢。 如果在SQL Server 2005中無法實現,請提供2008版本的這個?

回答

1

以下SYS.DM_DB_INDEX_USAGE_STATS應該給你大部分。 5和6可能不會成爲可能。

+0

好的,讓我們離開5和6.你能列出查詢其他物品。我對此很陌生,並努力找出所需的查詢。 – Lijo 2010-12-03 08:39:49

1

如果有人看到這一點 - 與SQL Server 2008 R2的,sys.dm_exec_query_stats有4分,這可能是使用的對點額外列5.

total_rows – Total number of rows returned by query 
last_rows – Number of the rows return by the last execution of the query 
min_rows – Minimum numbers of the rows returned by the query since it is compiled 
max_rows – Maximum numbers of the rows returned by the query since it is compiled 

(從here採取的描述 - 它說,這是新的迪納利,但2008 R2也有他們)。