USEFUL SITES :
Write for Us
For those not familiar with page splits, let's first take a look at what they are. Whenever you INSERT new data into a SQL Server table, or in some cases, UPDATE data in a SQL Server table, there may not enough room for the newly INSERTed or UPDATEd row in the applicable data page. In this case, SQL Server will have to move some of the data from the current data page and move it to a new data page. So not only does SQL Server experience the normal I/O of INSERTing or UPDATing a row, it must also move data and update any applicable indexes. This can result in a lot of excess I/O.
A certain amount of page splits is normal and expected, but when there are too many page splits, then your SQL Server's performance is compromised and you should take steps to reduce them.
So this comes back to our original question, how many page splits is too many? Like many questions in SQL Server performance tuning, it depends. The number of page splits will very depending on the following factors:
One of the easiest ways to measure page split activity is to use Performance Monitor and watch the SQLServer:Access Methods:Page Splits/sec counter.
On one SQL Server system I am familiar with that has about 75-100 active users, the page splits per second runs less than 1, with peaks up to 10 page splits per second.
On another SQL Server system I am familiar with, that has up to 500 active users, the page splits per second runs about 100, with peaks of up to 800 page splits per second.
Obviously, the first example above is not having a page splitting problem. Page splits are minimal. In the second system, page splitting is probably excessive, and is most likely contributing to less than optimal performance. If there are 100 page splits per second, the disk subsystem has to do a lot of extra work to move the records to new pages and update indexes.
Ideally, you want the page splits per second to be as small as possible. Your first step is to monitor the SQLServer:Access Methods:Page Splits/sec counter over a typical busy day and see what your results are. At the same time, monitor total disk I/O activity to see if you are experiencing a bottleneck. If you find that there is a very strong correlation between page splits and excessive disk I/O activity, then most likely you have a page splitting problem. The disk I/O activity that I like to watch are these two counters: PhysicalDisk: % Disk Time and PhysicalDisk: Average Disk Queue Length.
If you find out that your system is experiencing too many page splits, here are some things you should consider to remedy the problem: