forked from dataplat/dbatools-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Test-SqlBestPractice.ps1
154 lines (120 loc) · 3.92 KB
/
Test-SqlBestPractice.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
Function Test-DbaDatabaseCollation
{
<#
.SYNOPSIS
This is a simple template that shows a Test primarily based on SMO
.DESCRIPTION
This is a simple template that shows a Test primarily based on SMO
.PARAMETER SqlServer
The SQL Server that you're connecting to.
.PARAMETER Credential
Credential object used to connect to the SQL Server as a different user
.PARAMETER Databases
Return information for only specific databases
.PARAMETER Exclude
Return information for all but these specific databases
.PARAMETER Detailed
Shows detailed information about the server and database collations
.NOTES
Original Author: You (@YourTwitter, Yourblog.net)
dbatools PowerShell module (https://dbatools.io, [email protected])
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/Test-DbaDatabaseCollation
.EXAMPLE
Test-DbaDatabaseCollation -SqlServer sqlserver2014a
Returns server name, databse name and true/false if the collations match for all databases on sqlserver2014a
.EXAMPLE
Test-DbaDatabaseCollation -SqlServer sqlserver2014a -Databases db1, db2
Returns server name, databse name and true/false if the collations match for the db1 and db2 databases on sqlserver2014a
.EXAMPLE
Test-DbaDatabaseCollation -SqlServer sqlserver2014a, sql2016 -Detailed -Exclude db1
Lots of detailed information for database and server collations for all databases except db1 on sqlserver2014a and sql2016
.EXAMPLE
Get-SqlRegisteredServerName -SqlServer sql2016 | Test-DbaDatabaseCollation
Returns db/server collation information for every database on every server listed in the Central Management Server on sql2016
#>
[CmdletBinding()]
Param (
[parameter(Mandatory = $true, ValueFromPipeline = $true)]
[Alias("ServerInstance", "SqlInstance")]
[string[]]$SqlServer,
[PsCredential]$Credential,
[switch]$Detailed
)
DynamicParam { if ($SqlServer) { return Get-ParamSqlDatabases -SqlServer $SqlServer[0] -SqlCredential $Credential } }
BEGIN
{
# Convert from RuntimeDefinedParameter object to regular array
$databases = $psboundparameters.Databases
$exclude = $psboundparameters.Exclude
$collection = New-Object System.Collections.ArrayList
}
PROCESS
{
foreach ($servername in $SqlServer)
{
$servercount++
try
{
$server = Connect-SqlServer -SqlServer $servername -SqlCredential $Credential
}
catch
{
if ($servercount -eq 1)
{
throw $_
}
else
{
Write-Warning "Can't connect to $servername. Moving on."
Continue
}
}
$dbs = $server.Databases
if ($databases.count -gt 0)
{
$dbs = $dbs | Where-Object { $databases -contains $_.Name }
}
if ($exclude.count -gt 0)
{
$dbs = $dbs | Where-Object { $exclude -notcontains $_.Name }
}
foreach ($db in $dbs)
{
$null = $collection.Add([PSCustomObject]@{
Server = $server.name
ServerCollation = $server.collation
Database = $db.name
DatabaseCollation = $db.collation
IsEqual = $db.collation -eq $server.collation
})
}
}
}
END
{
if ($detailed)
{
return $collection
}
if ($databases.count -eq 1)
{
if ($sqlserver.count -eq 1)
{
return $collection.IsEqual
}
else
{
return ($collection | Select-Object Server, isEqual)
}
}
else
{
return ($collection | Select-Object Server, Database, IsEqual)
}
}
}