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

Fix two values #233

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions AdaptiveIndexDefrag/OPTIONS.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
**Available parameters for AdaptiveIndexDefrag**
- **@Exec_Print** defaults to 1 (that is to execute the SQL code generated by this SP) or optionally 0 (just print the commands).
- **@printCmds** defaults to 0 (do not print all commands to screen) or optionally 1 (print all commands to screen). Useful if you just want to see what commands would be executed.
- **@outputResults** defaults to 0 (does not output fragmentation information) or optionally 0 (output fragmentation information after run completes).
- **@debugMode** defaults to 0 (do not display debug comments) or optionally 0 (display debug comments).
- **@outputResults** defaults to 0 (does not output fragmentation information) or optionally 1 (output fragmentation information after run completes).
- **@debugMode** defaults to 0 (do not display debug comments) or optionally 1 (display debug comments).
- **@timeLimit** limits how much time can be spent performing index defrags and is expressed in minutes. Note that the time limit is checked BEFORE an index defrag begins, thus a long index defrag can exceed the time limit. Defaults to 480m (8h).
- **@dbScope** specifies a database name to defrag. If not specified, all non-system databases plus msdb and model will be defragmented.
- **@tblName** specifies if you only want to defrag indexes for a specific table. The input format is schema.table_name. If not specified, all tables will be defragmented.
Expand Down Expand Up @@ -38,4 +38,4 @@
- **@abortAfterwait** sets the action of @onlinelocktimeout. This parameter defaults to NULL (After lock timeout occurs, continue waiting for the lock with normal (regular) priority) and optionals are 0 (Kill all user transactions that block the online index rebuild DDL operation so that the operation can continue) and 1 (Exit the online index rebuild DDL operation currently being executed without taking any action).
- **@dealROWG** sets the Columnstore reorg option to compress all rowgroups, and not just closed ones.
- **@getBlobfrag** sets blob handling behavior. This parameter defaults to 0 to exclude blobs from fragmentation scan, but can optionally include blobs and off-row data when scanning for fragmentation.
- **@dataCompression** sets the compression option to use on all indexes. This parameter defaults to NULL, to keep whatever compression setting exists for the object and partition.
- **@dataCompression** sets the compression option to use on all indexes. This parameter defaults to NULL, to keep whatever compression setting exists for the object and partition.