萬盛學電腦網

 萬盛學電腦網 >> 數據庫 >> sql server教程 >> 如何提高SQLSERVER的性能

如何提高SQLSERVER的性能

 

如何提高sql server的性能www.c hinaitpower.comlSu2tX

 www.c hinaitpower.comlSu2tX

第一篇:通過維護表的索引來提高數據的訪問速度www.c hinaitpower.comlSu2tX

 www.c hinaitpower.comlSu2tX

大多數SQL Server表需要索引來提高數據的訪問速度,如果沒有索引,SQL Server要進行表格掃描讀取表中的每一個記錄才能找到索要的數據。索引可以分為簇索引和非簇索引,簇索引通過重排表中的數據來提高數據的訪問速度,而非簇索引則通過維護表中的數據指針來提高數據的索引。www.c hinaitpower.comlSu2tX

 www.c hinaitpower.comlSu2tX

   索引的體系結構:www.c hinaitpower.comlSu2tX

 www.c hinaitpower.comlSu2tX

為什麼要不斷的維護表的索引?首先,簡單介紹一下索引的體系結構。SQL Server在硬盤中用8KB頁面在數據庫文件內存放數據。缺省情況下這些頁面及其包含的數據是無組織的。為了使混亂變為有序,就要生成索引。生成索引後,就有了索引頁和數據頁,數據頁保存用戶寫入的數據信息。索引頁存放用於檢索列的數據值清單(關鍵字)和索引表中該值所在紀錄的地址指針。索引分為簇索引和非簇索引,簇索引實質上是將表中的數據排序,就好像是字典的索引目錄。非簇索引不對數據排序,它只保存了數據的指針地址。向一個帶簇索引的表中插入數據,當數據頁達到100%時,由於頁面沒有空間插入新的的紀錄,這時就會發生分頁,SQL Server 將大約一半的數據從滿頁中移到空頁中,從而生成兩個半的滿頁。這樣就有大量的數據空間。簇索引是雙向鏈表,在每一頁的頭部保存了前一頁、後一頁地址以及分頁後數據移動的地址,由於新頁可能在數據庫文件中的任何地方,因此頁面的鏈接不一定指向磁盤的下一個物理頁,鏈接可能指向了另一個區域,這就形成了分塊,從而減慢了系統的速度。對於帶簇索引和非簇索引的表來說,非簇索引的關鍵字是指向簇索引的,而不是指向數據頁的本身。www.c hinaitpower.comlSu2tX

為了克服數據分塊帶來的負面影響,需要重構表的索引,這是非常費時的,因此只能在需要時進行。可以通過DBCC SHOWCONTIG來確定是否需要重構表的索引。下面舉例來說明DBCC SHOWCONTIG和DBCC REDBINDEX的使用方法。以SQL Server自帶的northwind數據作為例子www.c hinaitpower.comlSu2tX

  帶開SQL Server的Query analyzer輸入命令:www.c hinaitpower.comlSu2tX

use northwindwww.c hinaitpower.comlSu2tX

declare @table_id intwww.c hinaitpower.comlSu2tX

set @table_id=object_id('orders')www.c hinaitpower.comlSu2tX

dbcc showcontig(@table_id)www.c hinaitpower.comlSu2tX

這個命令顯示northwind數據庫中的orders表的分塊情況,結果如下:www.c hinaitpower.comlSu2tX

 www.c hinaitpower.comlSu2tX

 www.c hinaitpower.comlSu2tX

 www.c hinaitpower.comlSu2tX

DBCC SHOWCONTIG scanning 'Orders' table...www.c hinaitpower.comlSu2tX

Table: 'Orders' (21575115); index ID: 1, database ID: 6www.c hinaitpower.comlSu2tX

TABLE level scan performed.www.c hinaitpower.comlSu2tX

- Pages Scanned................................: 20www.c hinaitpower.comlSu2tX

- Extents Scanned..............................: 5www.c hinaitpower.comlSu2tX

- Extent Switches..............................: 4www.c hinaitpower.comlSu2tX

- Avg. Pages per Extent........................: 4.0www.c hinaitpower.comlSu2tX

- Scan Density [Best Count:Actual Count].......: 60.00% [3:5]www.c hinaitpower.comlSu2tX

- Logical Scan Fragmentation ..................: 0.00%www.c hinaitpower.comlSu2tX

- Extent Scan Fragmentation ...................: 40.00%www.c hinaitpower.comlSu2tX

- Avg. Bytes Free per Page.....................: 146.5www.c hinaitpower.comlSu2tX

- Avg. Page Density (full).....................: 98.19%www.c hinaitpower.comlSu2tX

DBCC execution completed. If DBCC printed error messages, contact your system administrator.www.c hinaitpower.comlSu2tX

通過分析這些結果可以知道該表的索引是否需要重構。表1.1描述了每一行的意義www.c hinaitpower.comlSu2tX

 www.c hinaitpower.comlSu2tX

 www.c hinaitpower.comlSu2tX

 www.c hinaitpower.comlSu2tX

 www.c hinaitpower.comlSu2tX

 www.c hinaitpower.comlSu2tX

 www.c hinaitpower.comlSu2tX

 www.c hinaitpower.comlSu2tX

 信息                          描述www.c hinaitpower.comlSu2tX

Pages Scanned                    表或索引中的長頁數www.c hinaitpower.comlSu2tX

Extents Scanned                            &nbs

copyright © 萬盛學電腦網 all rights reserved