What are the limitation of the Online Index Rebuild Operation?
Answer / 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 |
How to assign null values to variables or columns?
how can you move the master database
How many columns can we include on clustered index ?
Why is normalisation important?
What is the full meaning of dml?
In the primary key have a multiple field or not?
What purpose does the model database server?
Is sql server difficult to learn?
what is sql injection in sql server?
What is the difference between dbcc indexdefrag and dbcc reindex?
How cand Optimize SQL Server Stored Procedures
What is the use of MOVE keyword in restore command
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)