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
What are click through reports?
How do indexes help, types?
How to populate a table in sql server?
What is the difference between count and distinct count?
Is ssrs support other database except ms sql server?
how you can list all the tables in a database?
What are key constraints?
What is self join in sql server joins?
What is order of B+tree?
What is cursors?
Which is the best place or learning center for MS SQL?????In Bangladesh?????
What is an identity?
How do I schedule a sql server profiler trace?
Can a database be shrunk with users active?
Detail about query optimizer?