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 select an exiting database using mssql_select_db()?
If you are given access to a SQL Server, how do you find if the SQL Instance is a named instance or a default instance?
how do you implement one-to-one, one-to-many and many-to-many relationships while designing tables? : Sql server database administration
What is the sql server 2000 version number?
What is view in sql?
Can we passed multiple recordset(set of records) using a Stored Procedure
Can a stored procedure call itself or recursive stored procedure? How many levels sp nesting is possible?
Is sql server is free?
What is measure group, measure? : sql server analysis services, ssas
What are the advantages of stored procedure in sql server?
What is the difference between DATETIME2 and DATETIME?
Mention the 3 ways to get a count of the number of records in a table.
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)