adspace
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
Is it possible to have clustered index on separate drive from original table location?
How do I find query history in sql server?
What are the different SQL Server Versions you have worked on?
do you know how to configure db2 side of the application? : Sql server database administration
What are the different subsets of sql?
What is self contained sub query?
Can one drop a column from a table?
Explain “row_number()” in sql server with an example?
Can we shrink data file in sql server?
What is clustered index
Where can you add custom error messages to sql server?
What is sql or structured query language?
What is the difference between for xml raw and for xml auto?
How can you append an identity column to a temporary table?
What is subquery? Explain the properties of a subquery?