forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExport-DbaDacPackage.ps1
305 lines (266 loc) · 14.5 KB
/
Export-DbaDacPackage.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
function Export-DbaDacPackage {
<#
.SYNOPSIS
Exports a dacpac from a server.
.DESCRIPTION
Using SQLPackage, export a dacpac from an instance of SQL Server.
Note - Extract from SQL Server is notoriously flaky - for example if you have three part references to external databases it will not work.
For help with the extract action parameters and properties, refer to https://msdn.microsoft.com/en-us/library/hh550080(v=vs.103).aspx
.PARAMETER SqlInstance
The target SQL Server instance or instances.
.PARAMETER SqlCredential
Allows you to login to servers using alternative logins instead Integrated, accepts Credential object created by Get-Credential
.PARAMETER Path
The directory where the .dacpac files will be exported to. Defaults to documents.
.PARAMETER Database
The database(s) to process - this list is auto-populated from the server. If unspecified, all databases will be processed.
.PARAMETER ExcludeDatabase
The database(s) to exclude - this list is auto-populated from the server
.PARAMETER AllUserDatabases
Run command against all user databases
.PARAMETER Type
Selecting the type of the export: Dacpac (default) or Bacpac.
.PARAMETER Table
List of the tables to include into the export. Should be provided as an array of strings: dbo.Table1, Table2, Schema1.Table3.
.PARAMETER DacOption
Export options for a corresponding export type. Can be created by New-DbaDacOption -Type Dacpac | Bacpac
.PARAMETER ExtendedParameters
Optional parameters used to extract the DACPAC. More information can be found at
https://msdn.microsoft.com/en-us/library/hh550080.aspx
.PARAMETER ExtendedProperties
Optional properties used to extract the DACPAC. More information can be found at
https://msdn.microsoft.com/en-us/library/hh550080.aspx
.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: Migration, Database, Dacpac
Author: Richie lee (@richiebzzzt)
Website: https://dbatools.io
Copyright: (c) 2018 by dbatools, licensed under MIT
License: MIT https://opensource.org/licenses/MIT
.LINK
https://dbatools.io/Export-DbaDacPackage
.EXAMPLE
PS C:\> Export-DbaDacPackage -SqlInstance sql2016 -Database SharePoint_Config
Exports the dacpac for SharePoint_Config on sql2016 to $home\Documents\SharePoint_Config.dacpac
.EXAMPLE
PS C:\> $options = New-DbaDacOption -Type Dacpac -Action Export
PS C:\> $options.ExtractAllTableData = $true
PS C:\> $options.CommandTimeout = 0
PS C:\> Export-DbaDacPackage -SqlInstance sql2016 -Database DB1 -Options $options
Uses DacOption object to set the CommandTimeout to 0 then extracts the dacpac for DB1 on sql2016 to $home\Documents\DB1.dacpac including all table data.
.EXAMPLE
PS C:\> Export-DbaDacPackage -SqlInstance sql2016 -AllUserDatabases -ExcludeDatabase "DBMaintenance","DBMonitoring" -Path "C:\temp"
Exports dacpac packages for all USER databases, excluding "DBMaintenance" & "DBMonitoring", on sql2016 and saves them to C:\temp
.EXAMPLE
PS C:\> $moreparams = "/OverwriteFiles:$true /Quiet:$true"
PS C:\> Export-DbaDacPackage -SqlInstance sql2016 -Database SharePoint_Config -Path C:\temp -ExtendedParameters $moreparams
Using extended parameters to over-write the files and performs the extraction in quiet mode. Uses command line instead of SMO behind the scenes.
#>
[CmdletBinding(DefaultParameterSetName = 'SMO')]
param
(
[parameter(Mandatory, ValueFromPipeline)]
[Alias("ServerInstance", "SqlServer")]
[DbaInstance[]]$SqlInstance,
[Alias("Credential")]
[PSCredential]$SqlCredential,
[object[]]$Database,
[object[]]$ExcludeDatabase,
[switch]$AllUserDatabases,
[string]$Path = "$home\Documents",
[parameter(ParameterSetName = 'SMO')]
[Alias('ExtractOptions', 'ExportOptions', 'DacExtractOptions', 'DacExportOptions', 'Options', 'Option')]
[object]$DacOption,
[parameter(ParameterSetName = 'CMD')]
[string]$ExtendedParameters,
[parameter(ParameterSetName = 'CMD')]
[string]$ExtendedProperties,
[ValidateSet('Dacpac', 'Bacpac')]
[string]$Type = 'Dacpac',
[parameter(ParameterSetName = 'SMO')]
[string[]]$Table,
[switch]$EnableException
)
process {
if ((Test-Bound -Not -ParameterName Database) -and (Test-Bound -Not -ParameterName ExcludeDatabase) -and (Test-Bound -Not -ParameterName AllUserDatabases)) {
Stop-Function -Message "You must specify databases to execute against using either -Database, -ExcludeDatabase or -AllUserDatabases"
return
}
if (-not (Test-Path $Path)) {
Write-Message -Level Verbose "Assuming that $Path is a file path"
$parentFolder = Split-Path $path -Parent
if (-not (Test-Path $parentFolder)) {
Stop-Function -Message "$parentFolder doesn't exist or access denied"
return
}
$leaf = Split-Path $path -Leaf
$fileName = Join-Path (Get-Item $parentFolder) $leaf
} else {
$fileItem = Get-Item $Path
if ($fileItem -is [System.IO.DirectoryInfo]) {
$parentFolder = $fileItem.FullName
} elseif ($fileItem -is [System.IO.FileInfo]) {
$fileName = $fileItem.FullName
}
}
if (-not $script:core) {
$dacfxPath = Resolve-Path -Path "$script:PSModuleRoot\bin\smo\Microsoft.SqlServer.Dac.dll"
if ((Test-Path $dacfxPath) -eq $false) {
Stop-Function -Message 'Dac Fx library not found.' -EnableException $EnableException
return
} else {
try {
Add-Type -Path $dacfxPath
Write-Message -Level Verbose -Message "Dac Fx loaded."
} catch {
Stop-Function -Message 'No usable version of Dac Fx found.' -ErrorRecord $_
return
}
}
}
#check that at least one of the DB selection parameters was specified
if (!$AllUserDatabases -and !$Database) {
Stop-Function -Message "Either -Database or -AllUserDatabases should be specified" -Continue
}
#Check Option object types - should have a specific type
if ($Type -eq 'Dacpac') {
if ($DacOption -and $DacOption -isnot [Microsoft.SqlServer.Dac.DacExtractOptions]) {
Stop-Function -Message "Microsoft.SqlServer.Dac.DacExtractOptions object type is expected - got $($DacOption.GetType())."
return
}
} elseif ($Type -eq 'Bacpac') {
if ($DacOption -and $DacOption -isnot [Microsoft.SqlServer.Dac.DacExportOptions]) {
Stop-Function -Message "Microsoft.SqlServer.Dac.DacExportOptions object type is expected - got $($DacOption.GetType())."
return
}
}
#Create a tuple to be used as a table filter
if ($Table) {
$tblList = New-Object 'System.Collections.Generic.List[Tuple[String, String]]'
foreach ($tableItem in $Table) {
$tableSplit = $tableItem.Split('.')
if ($tableSplit.Count -gt 1) {
$tblName = $tableSplit[-1]
$schemaName = $tableSplit[-2]
} else {
$tblName = [string]$tableSplit
$schemaName = 'dbo'
}
$tblList.Add((New-Object "tuple[String, String]" -ArgumentList $schemaName, $tblName))
}
} else {
$tblList = $null
}
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
}
$cleaninstance = $instance.ToString().Replace('\', '-')
if ($Database) {
$dbs = Get-DbaDatabase -SqlInstance $server -OnlyAccessible -Database $Database -ExcludeDatabase $ExcludeDatabase
} else {
# all user databases by default
$dbs = Get-DbaDatabase -SqlInstance $server -OnlyAccessible -ExcludeSystem -ExcludeDatabase $ExcludeDatabase
}
if (-not $dbs) {
Stop-Function -Message "Databases not found on $instance" -Target $instance -Continue
}
foreach ($db in $dbs) {
$resultstime = [diagnostics.stopwatch]::StartNew()
$dbname = $db.name
$connstring = $server.ConnectionContext.ConnectionString
if ($connstring -notmatch 'Database=') {
$connstring = "$connstring;Database=$dbname"
}
if ($fileName) {
$currentFileName = $fileName
} else {
if ($Type -eq 'Dacpac') { $ext = 'dacpac' }
elseif ($Type -eq 'Bacpac') { $ext = 'bacpac' }
$currentFileName = Join-Path $parentFolder "$cleaninstance-$dbname.$ext"
}
Write-Message -Level Verbose -Message "Using connection string $connstring"
#using SMO by default
if ($PsCmdlet.ParameterSetName -eq 'SMO') {
try {
$dacSvc = New-Object -TypeName Microsoft.SqlServer.Dac.DacServices -ArgumentList $connstring -ErrorAction Stop
} catch {
Stop-Function -Message "Could not connect to the connection string $connstring" -Target $instance -Continue
}
if (!$DacOption) {
$opts = New-DbaDacOption -Type $Type -Action Export
} else {
$opts = $DacOption
}
$null = $output = Register-ObjectEvent -InputObject $dacSvc -EventName "Message" -SourceIdentifier "msg" -Action { $EventArgs.Message.Message }
if ($Type -eq 'Dacpac') {
Write-Message -Level Verbose -Message "Initiating Dacpac extract to $currentFileName"
#not sure how to extract that info from the existing DAC application, leaving 1.0.0.0 for now
$version = New-Object System.Version -ArgumentList '1.0.0.0'
try {
$dacSvc.Extract($currentFileName, $dbname, $dbname, $version, $null, $tblList, $opts, $null)
} catch {
Stop-Function -Message "DacServices extraction failure" -ErrorRecord $_ -Continue
} finally {
Unregister-Event -SourceIdentifier "msg"
}
} elseif ($Type -eq 'Bacpac') {
Write-Message -Level Verbose -Message "Initiating Bacpac export to $currentFileName"
try {
$dacSvc.ExportBacpac($currentFileName, $dbname, $opts, $tblList, $null)
} catch {
Stop-Function -Message "DacServices export failure" -ErrorRecord $_ -Continue
} finally {
Unregister-Event -SourceIdentifier "msg"
}
}
$finalResult = ($output.output -join "`r`n" | Out-String).Trim()
} elseif ($PsCmdlet.ParameterSetName -eq 'CMD') {
if ($Type -eq 'Dacpac') { $action = 'Extract' }
elseif ($Type -eq 'Bacpac') { $action = 'Export' }
$cmdConnString = $connstring.Replace('"', "'")
$sqlPackageArgs = "/action:$action /tf:""$currentFileName"" /SourceConnectionString:""$cmdConnString"" $ExtendedParameters $ExtendedProperties"
try {
$startprocess = New-Object System.Diagnostics.ProcessStartInfo
$startprocess.FileName = "$script:PSModuleRoot\bin\smo\sqlpackage.exe"
$startprocess.Arguments = $sqlPackageArgs
$startprocess.RedirectStandardError = $true
$startprocess.RedirectStandardOutput = $true
$startprocess.UseShellExecute = $false
$startprocess.CreateNoWindow = $true
$process = New-Object System.Diagnostics.Process
$process.StartInfo = $startprocess
$process.Start() | Out-Null
$stdout = $process.StandardOutput.ReadToEnd()
$stderr = $process.StandardError.ReadToEnd()
$process.WaitForExit()
Write-Message -level Verbose -Message "StandardOutput: $stdout"
$finalResult = $stdout
} catch {
Stop-Function -Message "SQLPackage Failure" -ErrorRecord $_ -Continue
}
if ($process.ExitCode -ne 0) {
Stop-Function -Message "Standard output - $stderr" -Continue
}
}
[pscustomobject]@{
ComputerName = $server.ComputerName
InstanceName = $server.ServiceName
SqlInstance = $server.DomainInstanceName
Database = $dbname
Path = $currentFileName
Elapsed = [prettytimespan]($resultstime.Elapsed)
Result = $finalResult
} | Select-DefaultView -ExcludeProperty ComputerName, InstanceName
}
}
}
end {
Test-DbaDeprecation -DeprecatedOn "1.0.0" -EnableException:$false -Alias Export-DbaDacpac
}
}