Skip to content

Commit 24e1f32

Browse files
Update sp_IndexCleanup.sql
my output is always verbose
1 parent a89338c commit 24e1f32

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

sp_IndexCleanup/sp_IndexCleanup.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ ALTER PROCEDURE
2626
@get_all_databases bit = 0, /*looks for all accessible user databases and returns combined results*/
2727
@include_databases nvarchar(max) = NULL, /*comma-separated list of databases to include (only when @get_all_databases = 1)*/
2828
@exclude_databases nvarchar(max) = NULL, /*comma-separated list of databases to exclude (only when @get_all_databases = 1)*/
29-
@verbose_output tinyint = 0, /* 0 -> no verbose output, 1 -> add NONUNIQUE, NONCLUSTERED type output in the original_index_defintion output */
3029
@help bit = 'false',
3130
@debug bit = 'false',
3231
@version varchar(20) = NULL OUTPUT,
@@ -2056,7 +2055,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20562055
WHEN id1.index_id = 1
20572056
THEN N'CLUSTERED '
20582057
WHEN id1.index_id > 1
2059-
AND @verbose_output >= 1
20602058
THEN N'NONCLUSTERED '
20612059
ELSE N''
20622060
END +

0 commit comments

Comments
 (0)