We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 87880bb + fe645e7 commit 7700359Copy full SHA for 7700359
1 file changed
sp_BlitzIndex.sql
@@ -2591,6 +2591,7 @@ SELECT
2591
FROM #IndexSanity;
2592
2593
RAISERROR (N'Populate #PartitionCompressionInfo.',0,1) WITH NOWAIT;
2594
+IF OBJECT_ID('tempdb..#maps') IS NOT NULL DROP TABLE #maps;
2595
WITH maps
2596
AS
2597
(
@@ -2605,6 +2606,7 @@ SELECT *
2605
2606
INTO #maps
2607
FROM maps;
2608
2609
+IF OBJECT_ID('tempdb..#grps') IS NOT NULL DROP TABLE #grps;
2610
WITH grps
2611
2612
0 commit comments