What are the limitation of the Online Index Rebuild Operation?
Answer Posted / saravakumar
As title is very clear what this post is about I will not
write long description. I have listed definition of
FILLFACTOR from BOL here.
FILLFACTOR
Specifies a percentage that indicates how full the Database
Engine should make the leaf level of each index page during
index creation or alteration. fillfactor must be an integer
value from 1 to 100. The default is 0.
T-SQL Script to set Server level FILLFACTOR to 90
EXEC sys.sp_configure 'show advanced options', '1'
RECONFIGURE WITH OVERRIDE
GO
EXEC sys.sp_configure 'fill factor (%)', '90'
GO
RECONFIGURE WITH OVERRIDE
GO
EXEC sys.sp_configure 'show advanced options', '0'
RECONFIGURE WITH OVERRIDE
GO
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
How to delete existing rows in a table?
Why do we use stored procedures in sql server?
What is the difference between a unique key and primary key?
How to recover from sql injection? : sql server security
What is table value parameters (tvp)?
What is blocking and how would you troubleshoot it? : sql server database administration
What are information schema views?
Describe how to use linked server?
Why do you need a sql server?
What is a hint?
Differentiate between truncate vs delete in mssql?
What are the different types of backups that exist?
can a table be moved to different filegroup? : Sql server administration
How do I determine how many instances of sql server are installed on a computer?
What is model database? : SQL Server Architecture