Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Critical bugfixes for seemingly abandoned AdaptiveIndexDefrag #314

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions AdaptiveIndexDefrag/CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,10 @@ v1.6.6.9 - 06/26/2019 - Fixed issues running in Azure SQL Database.
v1.6.7 - 09/19/2019 - Added additional debug info;
Fixed additional issues running in Azure SQL Database;
Fixed issue with resumable index discovery on SQL Server 2017+.
v1.6.8 - 2024-08-30 - Bugfix update statistics because of quotenames, as programmed in https://github.com/AndrewG2/tigertoolbox/commit/00fef9a645e7f6880557cf59692b59f6da1a58c1
v1.6.9 - 2024-08-30 - Adding schema-names in the debug output & logging output
v1.7.0 - 2024-09-02 - Fix update-stats for tables with more than 10B changes since last update-stats
Fix duration calculation
Fix logging update-stats of table id, schema name and table name
v1.7.1 - 2024-09-10 - Fix for bug in official release : proactive fix for rebuilding indexes which have spaces in index names
Fix for bug introduced in v1.7.0: for those indexes rebuilt, the stats_log table had a null-value for objectId & objectName
2 changes: 1 addition & 1 deletion AdaptiveIndexDefrag/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The purpose for this procedure to perform an Intelligent defrag on one or more i
Yes, but it is used as a part of a full maintenance solution that also handles database integrity checks, errorlog cycling and other relevant SQL Server maintenance routines that every database administrator needs to handle. See more information in http://github.com/Microsoft/tigertoolbox/tree/master/MaintenanceSolution.

## On what version of SQL can I use it?
This procedure can be used from SQL Server 2005 SP2 onwards, because of the DMVs and DMFs involved.
This procedure can be used from SQL Server 2016 onwards, because of the DMVs and DMFs involved.

**NOTE:** no longer garanteed to work with SQL Server 2005. Use at your own volition.

Expand Down
Loading