forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFind-DbaDuplicateIndex.ps1
660 lines (603 loc) · 21.5 KB
/
Find-DbaDuplicateIndex.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
function Find-DbaDuplicateIndex {
<#
.SYNOPSIS
Find duplicate and overlapping indexes
.DESCRIPTION
This command will help you to find duplicate and overlapping indexes on a database or a list of databases
When 2008+ filtered property also come to comparison
Also tells how much space you can save by dropping the index.
We show the type of compression so you can make a more considered decision.
For now only supported for CLUSTERED and NONCLUSTERED indexes
You can select the indexes you want to drop on the gridview and by click OK the drop statement will be generated.
Output:
TableName
IndexName
KeyCols
IncludedCols
IndexSizeMB
IndexType
CompressionDesc (When 2008+)
NumberRows
IsDisabled
IsFiltered (When 2008+)
.PARAMETER SqlInstance
The SQL Server instance.
.PARAMETER SqlCredential
Allows you to login to servers using SQL Logins as opposed to Windows Auth/Integrated/Trusted. To use:
$scred = Get-Credential, then pass $scred object to the -SqlCredential parameter.
Windows Authentication will be used if SqlCredential is not specified. SQL Server does not accept Windows credentials being passed as credentials. To connect as a different Windows user, run PowerShell as that user.
.PARAMETER Database
The database(s) to process - this list is autopopulated from the server. If unspecified, all databases will be processed.
.PARAMETER IncludeOverlapping
Allows to see indexes partial duplicate.
Example: If first key column is the same but one index has included columns and the other not, this will be shown.
.PARAMETER FilePath
The file to write to.
.PARAMETER NoClobber
Do not overwrite file
.PARAMETER Append
Append to file
.PARAMETER Force
Instead of export or output the script, it runs performing the drop instruction
.PARAMETER WhatIf
Shows what would happen if the command were to run. No actions are actually performed.
.PARAMETER Confirm
Prompts you for confirmation before executing any changing operations within the command.
.NOTES
Original Author: Claudio Silva (@ClaudioESSilva)
dbatools PowerShell module (https://dbatools.io, clemaire@gmail.com)
Copyright (C) 2016 Chrissy LeMaire
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
.LINK
https://dbatools.io/Find-DbaDuplicateIndex
.EXAMPLE
Find-DbaDuplicateIndex -SqlInstance sql2005 -FilePath C:\temp\sql2005-DuplicateIndexes.sql
Exports SQL for the duplicate indexes in server "sql2005" choosen on grid-view and writes them to the file "C:\temp\sql2005-DuplicateIndexes.sql"
.EXAMPLE
Find-DbaDuplicateIndex -SqlInstance sql2005 -FilePath C:\temp\sql2005-DuplicateIndexes.sql -Append
Exports SQL for the duplicate indexes in server "sql2005" choosen on grid-view and writes/appends them to the file "C:\temp\sql2005-DuplicateIndexes.sql"
.EXAMPLE
Find-DbaDuplicateIndex -SqlInstance sqlserver2014a -SqlCredential $cred
Will find exact duplicate indexes on all user databases present on sqlserver2014a will be verified using SQL credentials.
.EXAMPLE
Find-DbaDuplicateIndex -SqlInstance sqlserver2014a -Database db1, db2
Will find exact duplicate indexes on both db1 and db2 databases
.EXAMPLE
Find-DbaDuplicateIndex -SqlInstance sqlserver2014a -IncludeOverlapping
Will find exact duplicate or overlapping indexes on all user databases
#>
[CmdletBinding(SupportsShouldProcess = $true)]
Param (
[parameter(Mandatory = $true, ValueFromPipeline = $true)]
[Alias("ServerInstance", "SqlServer")]
[DbaInstanceParameter[]]$SqlInstance,
[PSCredential][System.Management.Automation.CredentialAttribute()]$SqlCredential,
[Alias("Databases")]
[object[]]$Database,
[switch]$IncludeOverlapping,
[Alias("OutFile", "Path")]
[string]$FilePath,
[switch]$NoClobber,
[switch]$Append,
[switch]$Force
)
begin {
$exactDuplicateQuery2005 = "
WITH CTE_IndexCols
AS (
SELECT i.[object_id]
,i.index_id
,OBJECT_SCHEMA_NAME(i.[object_id]) AS SchemaName
,OBJECT_NAME(i.[object_id]) AS TableName
,NAME AS IndexName
,ISNULL(STUFF((
SELECT ', ' + col.NAME + ' ' + CASE
WHEN idxCol.is_descending_key = 1
THEN 'DESC'
ELSE 'ASC'
END -- Include column order (ASC / DESC)
FROM sys.index_columns idxCol
INNER JOIN sys.columns col ON idxCol.[object_id] = col.[object_id]
AND idxCol.column_id = col.column_id
WHERE i.[object_id] = idxCol.[object_id]
AND i.index_id = idxCol.index_id
AND idxCol.is_included_column = 0
ORDER BY idxCol.key_ordinal
FOR XML PATH('')
), 1, 2, ''), '') AS KeyCols
,ISNULL(STUFF((
SELECT ', ' + col.NAME + ' ' + CASE
WHEN idxCol.is_descending_key = 1
THEN 'DESC'
ELSE 'ASC'
END -- Include column order (ASC / DESC)
FROM sys.index_columns idxCol
INNER JOIN sys.columns col ON idxCol.[object_id] = col.[object_id]
AND idxCol.column_id = col.column_id
WHERE i.[object_id] = idxCol.[object_id]
AND i.index_id = idxCol.index_id
AND idxCol.is_included_column = 1
ORDER BY idxCol.key_ordinal
FOR XML PATH('')
), 1, 2, ''), '') AS IncludedCols
,i.[type_desc] AS IndexType
,i.is_disabled AS IsDisabled
FROM sys.indexes AS i
WHERE i.index_id > 0 -- Exclude HEAPS
AND i.[type_desc] IN (
'CLUSTERED'
,'NONCLUSTERED'
)
AND OBJECT_SCHEMA_NAME(i.[object_id]) <> 'sys'
)
,CTE_IndexSpace
AS (
SELECT s.[object_id]
,s.index_id
,SUM(s.[used_page_count]) * 8 / 1024.0 AS IndexSizeMB
,SUM(p.[rows]) AS NumberRows
FROM sys.dm_db_partition_stats AS s
INNER JOIN sys.partitions p WITH (NOLOCK) ON s.[partition_id] = p.[partition_id]
AND s.[object_id] = p.[object_id]
AND s.index_id = p.index_id
WHERE s.index_id > 0 -- Exclude HEAPS
AND OBJECT_SCHEMA_NAME(s.[object_id]) <> 'sys'
GROUP BY s.[object_id]
,s.index_id
)
SELECT DB_NAME() AS DatabaseName
,CI1.SchemaName + '.' + CI1.TableName AS 'TableName'
,CI1.IndexName
,CI1.KeyCols
,CI1.IncludedCols
,CI1.IndexType
,CSPC.IndexSizeMB
,CSPC.NumberRows
,CI1.IsDisabled
FROM CTE_IndexCols AS CI1
INNER JOIN CTE_IndexSpace AS CSPC ON CI1.[object_id] = CSPC.[object_id]
AND CI1.index_id = CSPC.index_id
WHERE EXISTS (
SELECT 1
FROM CTE_IndexCols CI2
WHERE CI1.SchemaName = CI2.SchemaName
AND CI1.TableName = CI2.TableName
AND CI1.KeyCols = CI2.KeyCols
AND CI1.IncludedCols = CI2.IncludedCols
AND CI1.IndexName <> CI2.IndexName
)"
$overlappingQuery2005 = "
WITH CTE_IndexCols
AS (
SELECT i.[object_id]
,i.index_id
,OBJECT_SCHEMA_NAME(i.[object_id]) AS SchemaName
,OBJECT_NAME(i.[object_id]) AS TableName
,NAME AS IndexName
,ISNULL(STUFF((
SELECT ', ' + col.NAME + ' ' + CASE
WHEN idxCol.is_descending_key = 1
THEN 'DESC'
ELSE 'ASC'
END -- Include column order (ASC / DESC)
FROM sys.index_columns idxCol
INNER JOIN sys.columns col ON idxCol.[object_id] = col.[object_id]
AND idxCol.column_id = col.column_id
WHERE i.[object_id] = idxCol.[object_id]
AND i.index_id = idxCol.index_id
AND idxCol.is_included_column = 0
ORDER BY idxCol.key_ordinal
FOR XML PATH('')
), 1, 2, ''), '') AS KeyCols
,ISNULL(STUFF((
SELECT ', ' + col.NAME + ' ' + CASE
WHEN idxCol.is_descending_key = 1
THEN 'DESC'
ELSE 'ASC'
END -- Include column order (ASC / DESC)
FROM sys.index_columns idxCol
INNER JOIN sys.columns col ON idxCol.[object_id] = col.[object_id]
AND idxCol.column_id = col.column_id
WHERE i.[object_id] = idxCol.[object_id]
AND i.index_id = idxCol.index_id
AND idxCol.is_included_column = 1
ORDER BY idxCol.key_ordinal
FOR XML PATH('')
), 1, 2, ''), '') AS IncludedCols
,i.[type_desc] AS IndexType
,i.is_disabled AS IsDisabled
FROM sys.indexes AS i
WHERE i.index_id > 0 -- Exclude HEAPS
AND i.[type_desc] IN (
'CLUSTERED'
,'NONCLUSTERED'
)
AND OBJECT_SCHEMA_NAME(i.[object_id]) <> 'sys'
)
,CTE_IndexSpace
AS (
SELECT s.[object_id]
,s.index_id
,SUM(s.[used_page_count]) * 8 / 1024.0 AS IndexSizeMB
,SUM(p.[rows]) AS NumberRows
FROM sys.dm_db_partition_stats AS s
INNER JOIN sys.partitions p WITH (NOLOCK) ON s.[partition_id] = p.[partition_id]
AND s.[object_id] = p.[object_id]
AND s.index_id = p.index_id
WHERE s.index_id > 0 -- Exclude HEAPS
AND OBJECT_SCHEMA_NAME(s.[object_id]) <> 'sys'
GROUP BY s.[object_id]
,s.index_id
)
SELECT DB_NAME() AS DatabaseName
,CI1.SchemaName + '.' + CI1.TableName AS 'TableName'
,CI1.IndexName
,CI1.KeyCols
,CI1.IncludedCols
,CI1.IndexType
,CSPC.IndexSizeMB
,CSPC.NumberRows
,CI1.IsDisabled
FROM CTE_IndexCols AS CI1
INNER JOIN CTE_IndexSpace AS CSPC ON CI1.[object_id] = CSPC.[object_id]
AND CI1.index_id = CSPC.index_id
WHERE EXISTS (
SELECT 1
FROM CTE_IndexCols CI2
WHERE CI1.SchemaName = CI2.SchemaName
AND CI1.TableName = CI2.TableName
AND (
(
CI1.KeyCols LIKE CI2.KeyCols + '%'
AND SUBSTRING(CI1.KeyCols, LEN(CI2.KeyCols) + 1, 1) = ' '
)
OR (
CI2.KeyCols LIKE CI1.KeyCols + '%'
AND SUBSTRING(CI2.KeyCols, LEN(CI1.KeyCols) + 1, 1) = ' '
)
)
AND CI1.IndexName <> CI2.IndexName
)"
# Support Compression 2008+
$exactDuplicateQuery = "
WITH CTE_IndexCols
AS (
SELECT i.[object_id]
,i.index_id
,OBJECT_SCHEMA_NAME(i.[object_id]) AS SchemaName
,OBJECT_NAME(i.[object_id]) AS TableName
,NAME AS IndexName
,ISNULL(STUFF((
SELECT ', ' + col.NAME + ' ' + CASE
WHEN idxCol.is_descending_key = 1
THEN 'DESC'
ELSE 'ASC'
END -- Include column order (ASC / DESC)
FROM sys.index_columns idxCol
INNER JOIN sys.columns col ON idxCol.[object_id] = col.[object_id]
AND idxCol.column_id = col.column_id
WHERE i.[object_id] = idxCol.[object_id]
AND i.index_id = idxCol.index_id
AND idxCol.is_included_column = 0
ORDER BY idxCol.key_ordinal
FOR XML PATH('')
), 1, 2, ''), '') AS KeyCols
,ISNULL(STUFF((
SELECT ', ' + col.NAME + ' ' + CASE
WHEN idxCol.is_descending_key = 1
THEN 'DESC'
ELSE 'ASC'
END -- Include column order (ASC / DESC)
FROM sys.index_columns idxCol
INNER JOIN sys.columns col ON idxCol.[object_id] = col.[object_id]
AND idxCol.column_id = col.column_id
WHERE i.[object_id] = idxCol.[object_id]
AND i.index_id = idxCol.index_id
AND idxCol.is_included_column = 1
ORDER BY idxCol.key_ordinal
FOR XML PATH('')
), 1, 2, ''), '') AS IncludedCols
,i.[type_desc] AS IndexType
,i.is_disabled AS IsDisabled
,i.has_filter AS IsFiltered
FROM sys.indexes AS i
WHERE i.index_id > 0 -- Exclude HEAPS
AND i.[type_desc] IN (
'CLUSTERED'
,'NONCLUSTERED'
)
AND OBJECT_SCHEMA_NAME(i.[object_id]) <> 'sys'
)
,CTE_IndexSpace
AS (
SELECT s.[object_id]
,s.index_id
,SUM(s.[used_page_count]) * 8 / 1024.0 AS IndexSizeMB
,SUM(p.[rows]) AS NumberRows
,p.data_compression_desc AS CompressionDesc
FROM sys.dm_db_partition_stats AS s
INNER JOIN sys.partitions p WITH (NOLOCK) ON s.[partition_id] = p.[partition_id]
AND s.[object_id] = p.[object_id]
AND s.index_id = p.index_id
WHERE s.index_id > 0 -- Exclude HEAPS
AND OBJECT_SCHEMA_NAME(s.[object_id]) <> 'sys'
GROUP BY s.[object_id]
,s.index_id
,p.data_compression_desc
)
SELECT DB_NAME() AS DatabaseName
,CI1.SchemaName + '.' + CI1.TableName AS 'TableName'
,CI1.IndexName
,CI1.KeyCols
,CI1.IncludedCols
,CI1.IndexType
,CSPC.IndexSizeMB
,CSPC.CompressionDesc
,CSPC.NumberRows
,CI1.IsDisabled
,CI1.IsFiltered
FROM CTE_IndexCols AS CI1
INNER JOIN CTE_IndexSpace AS CSPC ON CI1.[object_id] = CSPC.[object_id]
AND CI1.index_id = CSPC.index_id
WHERE EXISTS (
SELECT 1
FROM CTE_IndexCols CI2
WHERE CI1.SchemaName = CI2.SchemaName
AND CI1.TableName = CI2.TableName
AND CI1.KeyCols = CI2.KeyCols
AND CI1.IncludedCols = CI2.IncludedCols
AND CI1.IsFiltered = CI2.IsFiltered
AND CI1.IndexName <> CI2.IndexName
)"
$overlappingQuery = "
WITH CTE_IndexCols AS
(
SELECT
i.[object_id]
,i.index_id
,OBJECT_SCHEMA_NAME(i.[object_id]) AS SchemaName
,OBJECT_NAME(i.[object_id]) AS TableName
,Name AS IndexName
,ISNULL(STUFF((SELECT ', ' + col.NAME + ' ' + CASE
WHEN idxCol.is_descending_key = 1 THEN 'DESC'
ELSE 'ASC'
END -- Include column order (ASC / DESC)
FROM sys.index_columns idxCol
INNER JOIN sys.columns col
ON idxCol.[object_id] = col.[object_id]
AND idxCol.column_id = col.column_id
WHERE i.[object_id] = idxCol.[object_id]
AND i.index_id = idxCol.index_id
AND idxCol.is_included_column = 0
ORDER BY idxCol.key_ordinal
FOR XML PATH('')), 1, 2, ''), '') AS KeyCols
,ISNULL(STUFF((SELECT ', ' + col.NAME + ' ' + CASE
WHEN idxCol.is_descending_key = 1 THEN 'DESC'
ELSE 'ASC'
END -- Include column order (ASC / DESC)
FROM sys.index_columns idxCol
INNER JOIN sys.columns col
ON idxCol.[object_id] = col.[object_id]
AND idxCol.column_id = col.column_id
WHERE i.[object_id] = idxCol.[object_id]
AND i.index_id = idxCol.index_id
AND idxCol.is_included_column = 1
ORDER BY idxCol.key_ordinal
FOR XML PATH('')), 1, 2, ''), '') AS IncludedCols
,i.[type_desc] AS IndexType
,i.is_disabled AS IsDisabled
,i.has_filter AS IsFiltered
FROM sys.indexes AS i
WHERE i.index_id > 0 -- Exclude HEAPS
AND i.[type_desc] IN ('CLUSTERED', 'NONCLUSTERED')
AND OBJECT_SCHEMA_NAME(i.[object_id]) <> 'sys'
),
CTE_IndexSpace AS
(
SELECT
s.[object_id]
,s.index_id
,SUM(s.[used_page_count]) * 8 / 1024.0 AS IndexSizeMB
,SUM(p.[rows]) AS NumberRows
,p.data_compression_desc AS CompressionDesc
FROM sys.dm_db_partition_stats AS s
INNER JOIN sys.partitions p WITH (NOLOCK)
ON s.[partition_id] = p.[partition_id]
AND s.[object_id] = p.[object_id]
AND s.index_id = p.index_id
WHERE s.index_id > 0 -- Exclude HEAPS
AND OBJECT_SCHEMA_NAME(s.[object_id]) <> 'sys'
GROUP BY s.[object_id], s.index_id, p.data_compression_desc
)
SELECT
DB_NAME() AS DatabaseName
,CI1.SchemaName + '.' + CI1.TableName AS 'TableName'
,CI1.IndexName
,CI1.KeyCols
,CI1.IncludedCols
,CI1.IndexType
,CSPC.IndexSizeMB
,CSPC.CompressionDesc
,CSPC.NumberRows
,CI1.IsDisabled
,CI1.IsFiltered
FROM CTE_IndexCols AS CI1
INNER JOIN CTE_IndexSpace AS CSPC
ON CI1.[object_id] = CSPC.[object_id]
AND CI1.index_id = CSPC.index_id
WHERE EXISTS (SELECT 1
FROM CTE_IndexCols CI2
WHERE CI1.SchemaName = CI2.SchemaName
AND CI1.TableName = CI2.TableName
AND (
(CI1.KeyCols like CI2.KeyCols + '%' and SUBSTRING(CI1.KeyCols,LEN(CI2.KeyCols)+1,1) = ' ')
OR (CI2.KeyCols like CI1.KeyCols + '%' and SUBSTRING(CI2.KeyCols,LEN(CI1.KeyCols)+1,1) = ' ')
)
AND CI1.IsFiltered = CI2.IsFiltered
AND CI1.IndexName <> CI2.IndexName
)"
$sqlGO = "GO`r`n"
$sqlFinalGO = "GO`r`n`r`n"
if ($FilePath.Length -gt 0)
{
$directory = Split-Path $FilePath
$exists = Test-Path $directory
if ($exists -eq $false)
{
throw "Parent directory $directory does not exist"
}
}
Write-Output "Attempting to connect to Sql Server.."
$server = Connect-SqlInstance -SqlInstance $SqlInstance -SqlCredential $SqlCredential
}
process {
if ($server.versionMajor -lt 9)
{
throw "This function does not support versions lower than SQL Server 2005 (v9)"
}
if ($pipedatabase.Length -gt 0)
{
$Source = $pipedatabase[0].parent.name
$database = $pipedatabase.name
}
if ($database.Count -eq 0)
{
$database = ($server.Databases | Where-Object {$_.isSystemObject -eq 0 -and $_.Status -ne "Offline"}).Name
}
if ($database.Count -gt 0)
{
foreach ($db in $database)
{
try
{
Write-Output "Getting indexes from database '$db'"
$query = if ($server.versionMajor -eq 9)
{
if ($IncludeOverlapping){$overlappingQuery2005} else {$exactDuplicateQuery2005}
}
else
{
if ($IncludeOverlapping) {$overlappingQuery} else {$exactDuplicateQuery}
}
$duplicatedindex = $server.Databases[$db].ExecuteWithResults($query)
$scriptGenerated = $false
if ($duplicatedindex.Tables[0].Rows.Count -gt 0)
{
if ($Force)
{
$indexesToDrop = $duplicatedindex.Tables[0] | Out-GridView -Title "Duplicate Indexes on $($db) database - Choose indexes to DROP! (-Force was specified)" -PassThru
}
else
{
$indexesToDrop = $duplicatedindex.Tables[0] | Out-GridView -Title "Duplicate Indexes on $($db) database - Choose indexes to generate DROP script" -PassThru
}
#When only 1 line selected, the count does not work
if ($indexesToDrop.Count -gt 0 -or !([string]::IsNullOrEmpty($indexesToDrop)))
{
#reset to #Yes
$result = 0
if ($duplicatedindex.Tables[0].Rows.Count -eq $indexesToDrop.Count)
{
$title = "Indexes to drop on databases '$db':"
$message = "You will generate drop statements to all indexes.`r`nPerhaps you want to keep at least one.`r`nDo you wish to generate the script anyway? (Y/N)"
$yes = New-Object System.Management.Automation.Host.ChoiceDescription "&Yes", "Will continue"
$no = New-Object System.Management.Automation.Host.ChoiceDescription "&No", "Will exit"
$options = [System.Management.Automation.Host.ChoiceDescription[]]($yes, $no)
$result = $host.ui.PromptForChoice($title, $message, $options, 0)
}
if ($result -eq 0) #default OR answer = YES
{
$sqlDropScript = "/*`r`n"
$sqlDropScript += "`tScript generated @ $(Get-Date -format "yyyy-MM-dd HH:mm:ss.ms")`r`n"
$sqlDropScript += "`tDatabase: $($db)`r`n"
$sqlDropScript += if (!$IncludeOverlapping)
{
"`tConfirm that you have choosen the right indexes before execute the drop script`r`n"
}
else
{
"`tChoose wisely when dropping a partial duplicate index. You may want to check index usage before drop it.`r`n"
}
$sqlDropScript += "*/`r`n"
foreach ($index in $indexesToDrop)
{
if ($FilePath.Length -gt 0)
{
Write-Output "Exporting $($index.TableName).$($index.IndexName)"
}
if ($Force)
{
$sqlDropScript += "USE [$($index.DatabaseName)]`r`n"
$sqlDropScript += "IF EXISTS (SELECT 1 FROM sys.indexes WHERE [object_id] = OBJECT_ID('$($index.TableName)') AND name = '$($index.IndexName)')`r`n"
$sqlDropScript += " DROP INDEX $($index.TableName).$($index.IndexName)`r`n`r`n"
if ($Pscmdlet.ShouldProcess($db, "Dropping index '$($index.IndexName)' on table '$($index.TableName)' using -Force"))
{
$server.Databases[$db].ExecuteNonQuery($sqlDropScript) | Out-Null
Write-Output "Index '$($index.IndexName)' on table '$($index.TableName)' dropped"
}
}
else
{
$sqlDropScript += "USE [$($index.DatabaseName)]`r`n"
$sqlDropScript += $sqlGO
$sqlDropScript += "IF EXISTS (SELECT 1 FROM sys.indexes WHERE [object_id] = OBJECT_ID('$($index.TableName)') AND name = '$($index.IndexName)')`r`n"
$sqlDropScript += " DROP INDEX $($index.TableName).$($index.IndexName)`r`n"
$sqlDropScript += $sqlFinalGO
}
}
if (!$Force)
{
if ($FilePath.Length -gt 0)
{
$sqlDropScript | Out-File -FilePath $FilePath -Append:$Append -NoClobber:$NoClobber
}
else
{
Write-Output $sqlDropScript
}
$scriptGenerated = $true
}
}
else #answer = no
{
Write-Warning "Script will not be generated for database '$db'"
}
}
}
else
{
Write-Output "No duplicate indexes found!"
}
}
catch
{
throw $_
}
}
if ($scriptGenerated)
{
Write-Warning "Confirm the generated script before execute!"
}
if ($FilePath.Length -gt 0)
{
Write-Output "Script generated to $FilePath"
}
}
else
{
Write-Output "There are no databases to analyse."
}
}
end {
Test-DbaDeprecation -DeprecatedOn "1.0.0" -Silent:$false -Alias Get-SqlDuplicateIndex
}
}