forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFind-DbaDbDisabledIndex.ps1
150 lines (120 loc) · 5.91 KB
/
Find-DbaDbDisabledIndex.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
function Find-DbaDbDisabledIndex {
<#
.SYNOPSIS
Find Disabled indexes
.DESCRIPTION
This command will help you to find disabled indexes on a database or a list of databases.
.PARAMETER SqlInstance
The target SQL Server instance or instances.
.PARAMETER SqlCredential
Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
For MFA support, please use Connect-DbaInstance.
.PARAMETER Database
The database(s) to process. Options for this list are auto-populated from the server. If unspecified, all databases will be processed.
.PARAMETER ExcludeDatabase
Specifies the database(s) to exclude from processing. Options for this list are auto-populated from the server.
.PARAMETER NoClobber
If this switch is enabled, the output file will not be overwritten.
.PARAMETER Append
If this switch is enabled, content will be appended to the output file.
.PARAMETER WhatIf
If this switch is enabled, no actions are performed but informational messages will be displayed that explain what would happen if the command were to run.
.PARAMETER Confirm
If this switch is enabled, you will be prompted for confirmation before executing any operations that change state.
.PARAMETER EnableException
By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.
.NOTES
Tags: Index, Lookup
Author: Jason Squires, sqlnotnull.com
Website: https://dbatools.io
Copyright: (c) 2018 by dbatools, licensed under MIT
License: MIT https://opensource.org/licenses/MIT
.LINK
https://dbatools.io/Find-DbaDbDisabledIndex
.EXAMPLE
PS C:\> Find-DbaDbDisabledIndex -SqlInstance sql2005
Generates the SQL statements to drop the selected disabled indexes on server "sql2005".
.EXAMPLE
PS C:\> Find-DbaDbDisabledIndex -SqlInstance sqlserver2016 -SqlCredential $cred
Generates the SQL statements to drop the selected disabled indexes on server "sqlserver2016", using SQL Authentication to connect to the database.
.EXAMPLE
PS C:\> Find-DbaDbDisabledIndex -SqlInstance sqlserver2016 -Database db1, db2
Generates the SQL Statement to drop selected indexes in databases db1 & db2 on server "sqlserver2016".
.EXAMPLE
PS C:\> Find-DbaDbDisabledIndex -SqlInstance sqlserver2016
Generates the SQL statements to drop selected indexes on all user databases.
#>
[CmdletBinding(SupportsShouldProcess)]
param (
[parameter(Mandatory, ValueFromPipeline)]
[DbaInstanceParameter[]]$SqlInstance,
[PSCredential]
$SqlCredential,
[object[]]$Database,
[object[]]$ExcludeDatabase,
[switch]$NoClobber,
[switch]$Append,
[switch]$EnableException
)
begin {
$sql = "
SELECT DB_NAME() AS 'DatabaseName'
,s.name AS 'SchemaName'
,t.name AS 'TableName'
,i.object_id AS ObjectId
,i.name AS 'IndexName'
,i.index_id as 'IndexId'
,i.type_desc as 'TypeDesc'
FROM sys.tables t
JOIN sys.schemas s
ON t.schema_id = s.schema_id
JOIN sys.indexes i
ON i.object_id = t.object_id
WHERE i.is_disabled = 1"
}
process {
foreach ($instance in $SqlInstance) {
try {
$server = Connect-DbaInstance -SqlInstance $instance -SqlCredential $SqlCredential -MinimumVersion 9
} catch {
Stop-Function -Message "Failure" -Category ConnectionError -ErrorRecord $_ -Target $instance -Continue
}
if ($Database) {
$databases = $server.Databases | Where-Object Name -in $database
} else {
$databases = $server.Databases | Where-Object IsAccessible -eq $true
}
if ($databases.Count -gt 0) {
foreach ($db in $databases.name) {
if ($ExcludeDatabase -contains $db -or $null -eq $server.Databases[$db]) {
continue
}
try {
if ($PSCmdlet.ShouldProcess($db, "Getting disabled indexes")) {
Write-Message -Level Verbose -Message "Getting indexes from database '$db'."
Write-Message -Level Debug -Message "SQL Statement: $sql"
$disabledIndex = $server.Databases[$db].ExecuteWithResults($sql)
if ($disabledIndex.Tables[0].Rows.Count -gt 0) {
$results = $disabledIndex.Tables[0];
if ($results.Count -gt 0 -or !([string]::IsNullOrEmpty($results))) {
foreach ($index in $results) {
$index
}
}
} else {
Write-Message -Level Verbose -Message "No Disabled indexes found"
}
}
} catch {
Stop-Function -Message "Issue gathering indexes" -Category InvalidOperation -InnerErrorRecord $_ -Target $db
}
}
} else {
Write-Message -Level Verbose -Message "There are no databases to analyse."
}
}
}
}