We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04559fa commit f16d6c9Copy full SHA for f16d6c9
sp_BlitzIndex.sql
@@ -1714,7 +1714,7 @@ BEGIN TRY
1714
they could see performance slowdowns - see Github #3085. */
1715
DECLARE @MissingIndexPlans BIGINT;
1716
SET @StringToExecute = N'SELECT @MissingIndexPlans = COUNT(*) FROM ' + QUOTENAME(@DatabaseName) + N'.sys.dm_db_missing_index_group_stats_query;'
1717
- EXEC sp_executesql @StringToExecute, N'@MissingIndexPlans BIGINT OUT', @MissingIndexPlans;
+ EXEC sp_executesql @StringToExecute, N'@MissingIndexPlans BIGINT OUT', @MissingIndexPlans OUT;
1718
1719
IF @MissingIndexPlans > 1000
1720
BEGIN
0 commit comments