The current fillfactor of the server is set to 95, I have been trying to change it back to default 100 but the sp_configure commands is not taken into affect. Below is the script I run and the result of it.
Any ideas why the fill factor won't change from the current value 95?
SELECT @@version AS version go EXEC sp_configure 'show advanced options', 1; GO RECONFIGURE; GO sp_configure 'fill factor', 100; GO sp_configure 'fill factor (%)', 100; GO RECONFIGURE; GO EXEC sp_configure 'fill factor (%)'version
-----------------------------------------------
Microsoft SQL Server 2012 - 11.0.2100.60 (X64)
Feb 10 2012 19:39:15
Copyright (c) Microsoft Corporation
Enterprise Edition: Core-based Licensing (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1)
(1 row(s) affected)
Configuration option 'show advanced options' changed from 1 to 1. Run the RECONFIGURE statement to install.
Configuration option 'fill factor (%)' changed from 100 to 100. Run the RECONFIGURE statement to install.
Configuration option 'fill factor (%)' changed from 100 to 100. Run the RECONFIGURE statement to install.
name minimum maximum config_value run_value
----------------------------------- ----------- ----------- ------------ -----------
fill factor (%) 0 100 100 95
Gokhan Varol