forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGet-DbaAvailableCollation.ps1
111 lines (94 loc) · 4.62 KB
/
Get-DbaAvailableCollation.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
function Get-DbaAvailableCollation {
<#
.SYNOPSIS
Function to get available collations for a given SQL Server
.DESCRIPTION
The Get-DbaAvailableCollation function returns the list of collations available on each SQL Server.
Only the connect permission is required to get this information.
.PARAMETER SqlInstance
The SQL Server instance, or instances. Only connect permission is required.
.PARAMETER SqlCredential
SqlCredential object to connect as. If not specified, current Windows login will be used.
.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
Author: Bryan Hamby (@galador)
Website: https://dbatools.io
Copyright: (C) Chrissy LeMaire, clemaire@gmail.com
License: GNU GPL v3 https://opensource.org/licenses/GPL-3.0
.LINK
https://dbatools.io/Get-DbaAvailableCollation
.EXAMPLE
Get-DbaAvailableCollation -SqlInstance sql2016
Gets all the collations from server sql2016 using NT authentication
#>
[CmdletBinding()]
Param (
[parameter(Position = 0, Mandatory = $true, ValueFromPipeline = $true)]
[Alias("ServerInstance", "SqlServer")]
[DbaInstanceParameter[]]$SqlInstance,
[PSCredential]$SqlCredential,
[switch][Alias('Silent')]$EnableException
)
begin {
#Functions to get/cache the code page and language description.
#It runs about 9x faster caching these (2 vs 18 seconds) in my test,
#since there are so many duplicates
#No longer supported by Windows, but still shows up in SQL Server
#http://www.databaseteam.org/1-ms-sql-server/982faddda7a789a1.htm
$locales = @{66577 = "Japanese_Unicode"}
$codePages = @{}
function Get-LocaleDescription ($LocaleId) {
if ($locales.ContainsKey($LocaleId)) {
$localeName = $locales.Get_Item($LocaleId)
}
else {
try {
$localeName = (Get-Language $LocaleId).DisplayName
}
catch {
$localeName = $null
}
$locales.Set_Item($LocaleId, $localeName)
}
return $localeName
}
function Get-CodePageDescription ($codePageId) {
if ($codePages.ContainsKey($codePageId)) {
$codePageName = $codePages.Get_Item($codePageId)
}
else {
try {
$codePageName = (Get-CodePage $codePageId).EncodingName
}
catch {
$codePageName = $null
}
$codePages.Set_Item($codePageId, $codePageName)
}
return $codePageName
}
}
process {
foreach ($Instance in $sqlInstance) {
try {
Write-Message -Level Verbose -Message "Connecting to $instance"
$server = Connect-SqlInstance -SqlInstance $instance -SqlCredential $SqlCredential
}
catch {
Stop-Function -Message "Failure" -Category ConnectionError -ErrorRecord $_ -Target $instance -Continue
}
$availableCollations = $server.EnumCollations()
foreach ($collation in $availableCollations) {
Add-Member -Force -InputObject $collation -MemberType NoteProperty -Name ComputerName -value $server.NetName
Add-Member -Force -InputObject $collation -MemberType NoteProperty -Name InstanceName -value $server.ServiceName
Add-Member -Force -InputObject $collation -MemberType NoteProperty -Name SqlInstance -value $server.DomainInstanceName
Add-Member -Force -InputObject $collation -MemberType NoteProperty -Name CodePageName -Value (Get-CodePageDescription $collation.CodePage)
Add-Member -Force -InputObject $collation -MemberType NoteProperty -Name LocaleName -Value (Get-LocaleDescription $collation.LocaleID)
}
Select-DefaultView -InputObject $availableCollations -Property ComputerName, InstanceName, SqlInstance, Name, CodePage, CodePageName, LocaleID, LocaleName, Description
}
}
}