forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFind-DbaDatabase.ps1
131 lines (107 loc) · 5.66 KB
/
Find-DbaDatabase.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
#ValidationTags#Messaging#
function Find-DbaDatabase {
<#
.SYNOPSIS
Find database/s on multiple servers that match criteria you input
.DESCRIPTION
Allows you to search SQL Server instances for database that have either the same name, owner or service broker guid.
There a several reasons for the service broker guid not matching on a restored database primarily using alter database new broker. or turn off broker to return a guid of 0000-0000-0000-0000.
.PARAMETER SqlInstance
The target SQL Server instance or instances.
.PARAMETER SqlCredential
Credential object used to connect to the SQL Server as a different user
.PARAMETER Property
What you would like to search on. Either Database Name, Owner, or Service Broker GUID. Database name is the default.
.PARAMETER Pattern
Value that is searched for. This is a regular expression match but you can just use a plain ol string like 'dbareports'
.PARAMETER Exact
Search for an exact match instead of a pattern
.PARAMETER Detailed
Output all properties, will be depreciated in 1.0.0 release.
.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: Database
Author: Stephen Bennett, https://sqlnotesfromtheunderground.wordpress.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-DbaDatabase
.EXAMPLE
PS C:\> Find-DbaDatabase -SqlInstance "DEV01", "DEV02", "UAT01", "UAT02", "PROD01", "PROD02" -Pattern Report
Returns all database from the SqlInstances that have a database with Report in the name
.EXAMPLE
PS C:\> Find-DbaDatabase -SqlInstance "DEV01", "DEV02", "UAT01", "UAT02", "PROD01", "PROD02" -Pattern TestDB -Exact | Select-Object *
Returns all database from the SqlInstances that have a database named TestDB with a detailed output.
.EXAMPLE
PS C:\> Find-DbaDatabase -SqlInstance "DEV01", "DEV02", "UAT01", "UAT02", "PROD01", "PROD02" -Property ServiceBrokerGuid -Pattern '-faeb-495a-9898-f25a782835f5' | Select-Object *
Returns all database from the SqlInstances that have the same Service Broker GUID with a detailed output
#>
[CmdletBinding()]
param (
[Parameter(Mandatory, ValueFromPipeline)]
[Alias("ServerInstance", "SqlServer")]
[DbaInstanceParameter[]]$SqlInstance,
[Alias("Credential")]
[PSCredential]$SqlCredential,
[ValidateSet('Name', 'ServiceBrokerGuid', 'Owner')]
[string]$Property = 'Name',
[parameter(Mandatory)]
[string]$Pattern,
[switch]$Exact,
[switch]$Detailed,
[Alias('Silent')]
[switch]$EnableException
)
begin {
Test-DbaDeprecation -DeprecatedOn 1.0.0 -Parameter Detailed
}
process {
foreach ($instance in $SqlInstance) {
try {
$server = Connect-SqlInstance -SqlInstance $instance -SqlCredential $SqlCredential
} catch {
Stop-Function -Message "Error occurred while establishing connection to $instance" -Category ConnectionError -ErrorRecord $_ -Target $instance -Continue
}
if ($exact -eq $true) {
$dbs = $server.Databases | Where-Object IsAccessible | Where-Object { $_.$property -eq $pattern }
} else {
try {
$dbs = $server.Databases | Where-Object IsAccessible | Where-Object { $_.$property.ToString() -match $pattern }
} catch {
# they probably put asterisks thinking it's a like
$Pattern = $Pattern -replace '\*', ''
$Pattern = $Pattern -replace '\%', ''
$dbs = $server.Databases | Where-Object { $_.$property.ToString() -match $pattern }
}
}
foreach ($db in $dbs) {
$extendedproperties = @()
foreach ($xp in $db.ExtendedProperties) {
$extendedproperties += [PSCustomObject]@{
Name = $db.ExtendedProperties[$xp.Name].Name
Value = $db.ExtendedProperties[$xp.Name].Value
}
}
if ($extendedproperties.count -eq 0) { $extendedproperties = 0 }
[PSCustomObject]@{
ComputerName = $server.ComputerName
InstanceName = $server.ServiceName
SqlInstance = $server.Name
Name = $db.Name
Size = [dbasize]($db.Size * 1024 * 1024)
Owner = $db.Owner
CreateDate = $db.CreateDate
ServiceBrokerGuid = $db.ServiceBrokerGuid
Tables = ($db.Tables | Where-Object { $_.IsSystemObject -eq $false }).Count
StoredProcedures = ($db.StoredProcedures | Where-Object { $_.IsSystemObject -eq $false }).Count
Views = ($db.Views | Where-Object { $_.IsSystemObject -eq $false }).Count
ExtendedProperties = $extendedproperties
}
}
}
}
}