diff --git a/AdaptiveIndexDefrag/OPTIONS.md b/AdaptiveIndexDefrag/OPTIONS.md index 2ba78ae1..3a5389ba 100644 --- a/AdaptiveIndexDefrag/OPTIONS.md +++ b/AdaptiveIndexDefrag/OPTIONS.md @@ -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. @@ -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. \ No newline at end of file +- **@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.