forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExport-DbaScript.ps1
341 lines (287 loc) · 16.5 KB
/
Export-DbaScript.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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
function Export-DbaScript {
<#
.SYNOPSIS
Exports scripts from SQL Management Objects (SMO)
.DESCRIPTION
Exports scripts from SQL Management Objects
.PARAMETER InputObject
A SQL Management Object such as the one returned from Get-DbaLogin
.PARAMETER Path
Specifies the directory where the file or files will be exported.
Will default to Path.DbatoolsExport Configuration entry
.PARAMETER FilePath
Specifies the full file path of the output file.
.PARAMETER Encoding
Specifies the file encoding. The default is UTF8.
Valid values are:
-- ASCII: Uses the encoding for the ASCII (7-bit) character set.
-- BigEndianUnicode: Encodes in UTF-16 format using the big-endian byte order.
-- Byte: Encodes a set of characters into a sequence of bytes.
-- String: Uses the encoding type for a string.
-- Unicode: Encodes in UTF-16 format using the little-endian byte order.
-- UTF7: Encodes in UTF-7 format.
-- UTF8: Encodes in UTF-8 format.
-- Unknown: The encoding type is unknown or invalid. The data can be treated as binary.
.PARAMETER Passthru
Output script to console
.PARAMETER ScriptingOptionsObject
An SMO Scripting Object that can be used to customize the output - see New-DbaScriptingOption
Options set in the ScriptingOptionsObject may override other parameter values
.PARAMETER BatchSeparator
Specifies the Batch Separator to use. Uses the value from configuration Formatting.BatchSeparator by default. This is normally "GO"
.PARAMETER NoPrefix
Do not include a Prefix
.PARAMETER WhatIf
Shows what would happen if the command were to run. No actions are actually performed
.PARAMETER NoClobber
Do not overwrite file
.PARAMETER Append
Append to file
.PARAMETER Confirm
Prompts you for confirmation before executing any changing operations within the command
.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, Backup, Export
Author: Chrissy LeMaire (@cl), netnerds.net
Website: https://dbatools.io
Copyright: (c) 2018 by dbatools, licensed under MIT
License: MIT https://opensource.org/licenses/MIT
.LINK
https://dbatools.io/Export-DbaScript
.EXAMPLE
PS C:\> Get-DbaAgentJob -SqlInstance sql2016 | Export-DbaScript
Exports all jobs on the SQL Server sql2016 instance using a trusted connection - automatically determines filename based on the Path.DbatoolsExport configuration setting, current time and server name.
.EXAMPLE
PS C:\> Get-DbaAgentJob -SqlInstance sql2016 | Export-DbaScript -FilePath C:\temp\export.sql -Append
Exports all jobs on the SQL Server sql2016 instance using a trusted connection - Will append the output to the file C:\temp\export.sql if it already exists
Inclusion of Batch Separator in script depends on the configuration s not include Batch Separator and will not compile
.EXAMPLE
PS C:\> Get-DbaDbTable -SqlInstance sql2016 -Database MyDatabase -Table 'dbo.Table1', 'dbo.Table2' -SqlCredential sqladmin | Export-DbaScript -FilePath C:\temp\export.sql
Exports only script for 'dbo.Table1' and 'dbo.Table2' in MyDatabase to C:temp\export.sql and uses the SQL login "sqladmin" to login to sql2016
.EXAMPLE
PS C:\> Get-DbaAgentJob -SqlInstance sql2016 -Job syspolicy_purge_history, 'Hourly Log Backups' -SqlCredential sqladmin | Export-DbaScript -FilePath C:\temp\export.sql -NoPrefix
Exports only syspolicy_purge_history and 'Hourly Log Backups' to C:temp\export.sql and uses the SQL login "sqladmin" to login to sql2016
Suppress the output of a Prefix
.EXAMPLE
PS C:\> $options = New-DbaScriptingOption
PS C:\> $options.ScriptSchema = $true
PS C:\> $options.IncludeDatabaseContext = $true
PS C:\> $options.IncludeHeaders = $false
PS C:\> $Options.NoCommandTerminator = $false
PS C:\> $Options.ScriptBatchTerminator = $true
PS C:\> $Options.AnsiFile = $true
PS C:\> Get-DbaAgentJob -SqlInstance sql2016 -Job syspolicy_purge_history, 'Hourly Log Backups' -SqlCredential sqladmin | Export-DbaScript -FilePath C:\temp\export.sql -ScriptingOptionsObject $options
Exports only syspolicy_purge_history and 'Hourly Log Backups' to C:temp\export.sql and uses the SQL login "sqladmin" to login to sql2016
Uses Scripting options to ensure Batch Terminator is set
.EXAMPLE
PS C:\> Get-DbaAgentJob -SqlInstance sql2014 | Export-DbaScript -Passthru | ForEach-Object { $_.Replace('sql2014','sql2016') } | Set-Content -Path C:\temp\export.sql
Exports jobs and replaces all instances of the servername "sql2014" with "sql2016" then writes to C:\temp\export.sql
.EXAMPLE
PS C:\> $options = New-DbaScriptingOption
PS C:\> $options.ScriptSchema = $true
PS C:\> $options.IncludeDatabaseContext = $true
PS C:\> $options.IncludeHeaders = $false
PS C:\> $Options.NoCommandTerminator = $false
PS C:\> $Options.ScriptBatchTerminator = $true
PS C:\> $Options.AnsiFile = $true
PS C:\> $Databases = Get-DbaDatabase -SqlInstance sql2016 -ExcludeDatabase master, model, msdb, tempdb
PS C:\> foreach ($db in $Databases) {
>> Export-DbaScript -InputObject $db -FilePath C:\temp\export.sql -Append -Encoding UTF8 -ScriptingOptionsObject $options -NoPrefix
>> }
Exports Script for each database on sql2016 excluding system databases
Uses Scripting options to ensure Batch Terminator is set
Will append the output to the file C:\temp\export.sql if it already exists
#>
[CmdletBinding(SupportsShouldProcess)]
param (
[parameter(Mandatory, ValueFromPipeline)]
[object[]]$InputObject,
[Alias("ScriptingOptionObject")]
[Microsoft.SqlServer.Management.Smo.ScriptingOptions]$ScriptingOptionsObject,
[string]$Path = (Get-DbatoolsConfigValue -FullName 'Path.DbatoolsExport'),
[Alias("OutFile", "FileName")]
[string]$FilePath,
[ValidateSet('ASCII', 'BigEndianUnicode', 'Byte', 'String', 'Unicode', 'UTF7', 'UTF8', 'Unknown')]
[string]$Encoding = 'UTF8',
[string]$BatchSeparator = (Get-DbatoolsConfigValue -FullName 'Formatting.BatchSeparator'),
[switch]$NoPrefix,
[switch]$Passthru,
[switch]$NoClobber,
[switch]$Append,
[switch]$EnableException
)
begin {
$null = Test-ExportDirectory -Path $Path
if ($IsLinux -or $IsMacOs) {
$executingUser = $env:USER
} else {
$executingUser = [Security.Principal.WindowsIdentity]::GetCurrent().Name
}
$commandName = $MyInvocation.MyCommand.Name
$prefixArray = @()
# If -Append or -Append:$true is passed in then set these variables. Otherwise, the caller has specified -Append:$false or not specified -Append and they want to overwrite the file if it already exists.
$appendToScript = $false
if ($Append) {
$appendToScript = $true
}
if ($ScriptingOptionsObject) {
# Check if BatchTerminator is consistent
if (($($ScriptingOptionsObject.ScriptBatchTerminator)) -and ([string]::IsNullOrWhitespace($BatchSeparator))) {
Write-Message -Level Warning -Message "Setting ScriptBatchTerminator to true and also having BatchSeperarator as an empty or null string may produce unintended results."
}
# Save those properties that will be changed in the process block so that they can be reset at the end
$soAppendToFile = $ScriptingOptionsObject.AppendToFile
$soToFileOnly = $ScriptingOptionsObject.ToFileOnly
$soFileName = $ScriptingOptionsObject.FileName
}
$eol = [System.Environment]::NewLine
}
process {
if (Test-FunctionInterrupt) { return }
foreach ($object in $InputObject) {
$typename = $object.GetType().ToString()
if ($typename.StartsWith('Microsoft.SqlServer.')) {
$shorttype = $typename.Split(".")[-1]
} else {
Stop-Function -Message "InputObject is of type $typename which is not a SQL Management Object. Only SMO objects are supported." -Category InvalidData -Target $object -Continue
}
if ($shorttype -in "LinkedServer", "Credential", "Login") {
Write-Message -Level Warning -Message "Support for $shorttype is limited at this time. No passwords, hashed or otherwise, will be exported if they exist."
}
# Just gotta add the stuff that Nic Cain added to his script
if ($shorttype -eq "Configuration") {
Write-Message -Level Warning -Message "Support for $shorttype is limited at this time."
}
if ($shorttype -eq "AvailabilityGroup") {
Write-Message -Level Verbose -Message "Invoking .Script() as a workaround for https://github.com/dataplat/dbatools/issues/5913."
try {
$null = $InputObject.Script()
} catch {
Write-Message -Level Verbose -Message "Invoking .Script() failed: $_"
}
}
# Find the server object to pass on to the function
$parent = $object.parent
do {
if ($parent.Urn.Type -ne "Server") {
$parent = $parent.Parent
}
}
until (($parent.Urn.Type -eq "Server") -or (-not $parent))
if (-not $parent -and -not (Get-Member -InputObject $object -Name ScriptCreate) ) {
Stop-Function -Message "Failed to find valid SMO server object in input: $object." -Category InvalidData -Target $object -Continue
}
try {
$server = $parent
$serverName = $server.Name.Replace('\', '$')
$scripter = New-Object Microsoft.SqlServer.Management.Smo.Scripter $server
if ($ScriptingOptionsObject) {
$scripter.Options = $ScriptingOptionsObject
$scriptBatchTerminator = $ScriptingOptionsObject.ScriptBatchTerminator
}
if (-not $Passthru) {
$scriptPath = Get-ExportFilePath -Path $PSBoundParameters.Path -FilePath $PSBoundParameters.FilePath -Type sql -ServerName $serverName
} else {
$scriptPath = 'Console'
}
if ($NoPrefix) {
$prefix = $null
} else {
$prefix = "/*$eol`tCreated by $executingUser using dbatools $commandName for objects on $serverName at $(Get-Date)$eol`tSee https://dbatools.io/$commandName for more information$eol*/"
}
if ($Passthru) {
if ($null -ne $prefix) {
$prefix | Out-String
}
} else {
if ($prefixArray -notcontains $scriptPath) {
if ((Test-Path -Path $scriptPath) -and $NoClobber) {
Stop-Function -Message "File already exists. If you want to overwrite it remove the -NoClobber parameter. If you want to append data, please Use -Append parameter." -Target $scriptPath -Continue
}
#Only at the first output we use the passed variables Append & NoClobber. For this execution the next ones need to use -Append
# Empty $prefix will clean file in case $appendToScript is not set.
Write-Message -Level Verbose -Message "Writing (maybe empty) prefix to file $scriptPath"
$prefix | Out-File -FilePath $scriptPath -Encoding $encoding -Append:$appendToScript -NoClobber:$NoClobber
$prefixArray += $scriptPath
}
}
if ($Pscmdlet.ShouldProcess($env:computername, "Exporting $object from $server to $scriptPath")) {
Write-Message -Level Verbose -Message "Exporting $object"
if ($Passthru) {
if ($ScriptingOptionsObject) {
$ScriptingOptionsObject.FileName = $null
foreach ($scriptpart in $scripter.EnumScript($object)) {
if ($scriptBatchTerminator) {
$scriptpart = "$scriptpart$eol$BatchSeparator$eol"
}
$scriptpart | Out-String
}
} else {
foreach ($scriptpart in $scripter.EnumScript($object)) {
if ($BatchSeparator) {
$scriptpart = "$scriptpart$eol$BatchSeparator$eol"
} else {
$scriptpart = "$scriptpart$eol"
}
$scriptpart | Out-String
}
}
} else {
if ($ScriptingOptionsObject) {
if ($scriptBatchTerminator) {
# Option to script batch terminator via ScriptingOptionsObject needs to write to file only
$ScriptingOptionsObject.AppendToFile = $true
$ScriptingOptionsObject.ToFileOnly = $true
if (-not $ScriptingOptionsObject.FileName) {
$ScriptingOptionsObject.FileName = $scriptPath
}
$null = $object.Script($ScriptingOptionsObject)
} else {
$ScriptingOptionsObject.FileName = $null
$scriptInFull = foreach ($scriptpart in $scripter.EnumScript($object)) {
if ($BatchSeparator) {
$scriptpart = "$scriptpart$eol$BatchSeparator$eol"
} else {
$scriptpart = "$scriptpart$eol"
}
$scriptpart
}
$scriptInFull | Out-File -FilePath $scriptPath -Encoding $encoding -Append
}
} else {
$scriptInFull = foreach ($scriptpart in $scripter.EnumScript($object)) {
if ($BatchSeparator) {
$scriptpart = "$scriptpart$eol$BatchSeparator$eol"
} else {
$scriptpart = "$scriptpart$eol"
}
$scriptpart
}
$scriptInFull | Out-File -FilePath $scriptPath -Encoding $encoding -Append
}
}
if (-not $Passthru) {
Write-Message -Level Verbose -Message "Exported $object on $($server.Name) to $scriptPath"
Get-ChildItem -Path $scriptPath
}
}
} catch {
$message = $_.Exception.InnerException.InnerException.InnerException.Message
if (-not $message) {
$message = $_.Exception
}
Stop-Function -Message "Failure on $($server.Name) | $message" -Target $server
} finally {
# Reset the changed values of the $ScriptingOptionsObject in case it is reused later
if ($ScriptingOptionsObject) {
$ScriptingOptionsObject.AppendToFile = $soAppendToFile
$ScriptingOptionsObject.ToFileOnly = $soToFileOnly
$ScriptingOptionsObject.FileName = $soFileName
}
}
}
}
}