Litespeed for SQL Server 6.1 resets the default fill factor within SQL2000 instance incorrectly.
Litespeed is doing a reorganization of indexes and using the following code:
DBCC DBREINDEX(N'[Northwind].[dbo].[Orders]', N'', 100, SORTED_DATA_REORG)
else
DBCC DBREINDEX(N'[Northwind].[dbo].[Orders]', N'',100)
When it should be using:
DBCC DBREINDEX(N'[Northwind].[dbo].[Orders]', N'', 0, SORTED_DATA_REORG)
else
DBCC DBREINDEX(N'[Northwind].[dbo].[Orders]', N'', 0)
This issue will be fixed in a future release of Litespeed for SQL Server.
© 2025 Quest Software Inc. ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center