Call now: (800) 766-1884  


 Home


SQL Server Tips
SQL Server Training

SQL Server Consulting
SQL Server Support

Articles
Services
SQL Server Scripts
Scripts Menu



 

 

 

 
 

SQL Server page splits per second script


SQL Server Scripts by Burleson Consulting
 


**********************************************
-- page_splits.sql
**********************************************
However, high fill factor settings can also result in page splits for
clustered indexes when SQL Server enforces the sort order of the clustered
index during INSERT or UPDATE actions. This happens because SQL Server
does not have room on an index page for the requested change, so it has to split
the page to perform the modification. This can result in performance degradation
and can be confirmed by carefully watching the page splits counter, available from
the page_splits query below:

select
cntr_value
from
master.dbo.sysperfinfo
See code depot for full script
where
counter_name = 'Page Splits/sec' and
object_name like '%Access methods%'

 

 

 

image


 

 


 

 

 

 

Note: The pages on this site were created as a support and training reference for use by our staff of DBA consultants.  If you find it confusing, please exit this page.

Errata?  SQL Server technology is changing and we strive to update our SQL Server support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail:and include the URL for the page.
 


Burleson Consulting
SQL Server database support

 

Copyright © 1996 -  2006 by Burleson Enterprises, Inc. All rights reserved.

Hit Counter