-
-
Notifications
You must be signed in to change notification settings - Fork 808
/
Get-DbaDbBackupHistory.ps1
715 lines (638 loc) · 38.1 KB
/
Get-DbaDbBackupHistory.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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
function Get-DbaDbBackupHistory {
<#
.SYNOPSIS
Returns backup history details for databases on a SQL Server.
.DESCRIPTION
Returns backup history details for some or all databases on a SQL Server.
You can even get detailed information (including file path) for latest full, differential and log files.
Backups taken with the CopyOnly option will NOT be returned, unless the IncludeCopyOnly switch is present.
Reference: http://www.sqlhub.com/2011/07/find-your-backup-history-in-sql-server.html
.PARAMETER SqlInstance
The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.
.PARAMETER SqlCredential
Credential object used to connect to the SQL Server instance as a different user. This can be a Windows or SQL Server account. Windows users are determined by the existence of a backslash, so if you are intending to use an alternative Windows connection instead of a SQL login, ensure it contains a backslash.
.PARAMETER Database
Specifies one or more database(s) to process. If unspecified, all databases will be processed.
.PARAMETER ExcludeDatabase
Specifies one or more database(s) to exclude from processing.
.PARAMETER IncludeCopyOnly
By default Get-DbaDbBackupHistory will ignore backups taken with the CopyOnly option. This switch will include them.
.PARAMETER Force
If this switch is enabled, a large amount of information is returned, similar to what SQL Server itself returns.
.PARAMETER Since
Specifies a DateTime object to use as the starting point for the search for backups.
.PARAMETER RecoveryFork
Specifies the Recovery Fork you want backup history for.
.PARAMETER Last
If this switch is enabled, the most recent full chain of full, diff and log backup sets is returned.
.PARAMETER LastFull
If this switch is enabled, the most recent full backup set is returned.
.PARAMETER LastDiff
If this switch is enabled, the most recent differential backup set is returned.
.PARAMETER LastLog
If this switch is enabled, the most recent log backup is returned.
.PARAMETER DeviceType
Specifies a filter for backup sets based on DeviceType. Valid options are 'Disk','Permanent Disk Device', 'Tape', 'Permanent Tape Device','Pipe','Permanent Pipe Device','Virtual Device','URL', in addition to custom integers for your own DeviceType.
.PARAMETER Raw
If this switch is enabled, one object per backup file is returned. Otherwise, media sets (striped backups across multiple files) will be grouped into a single return object.
.PARAMETER Type
Specifies one or more types of backups to return. Valid options are 'Full', 'Log', 'Differential', 'File', 'Differential File', 'Partial Full', and 'Partial Differential'. Otherwise, all types of backups will be returned unless one of the -Last* switches is enabled.
.PARAMETER LastLsn
Specifies a minimum LSN to use in filtering backup history. Only backups with an LSN greater than this value will be returned, which helps speed the retrieval process.
.PARAMETER IncludeMirror
By default mirrors of backups are not returned, this switch will cause them to be returned.
.PARAMETER AgCheck
Deprecated. The functionality to also get the history from all replicas if SqlInstance is part on an availability group has been moved to Get-DbaAgBackupHistory.
.PARAMETER IgnoreDiffBackup
When this switch is enabled, Differential backups will be ignored.
.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: DisasterRecovery, Backup
Author: Chrissy LeMaire (@cl) | Stuart Moore (@napalmgram)
Website: https://dbatools.io
Copyright: (c) 2018 by dbatools, licensed under MIT
License: MIT https://opensource.org/licenses/MIT
.LINK
https://dbatools.io/Get-DbaDbBackupHistory
.EXAMPLE
PS C:\> Get-DbaDbBackupHistory -SqlInstance SqlInstance2014a
Returns server name, database, username, backup type, date for all database backups still in msdb history on SqlInstance2014a. This may return many rows; consider using filters that are included in other examples.
.EXAMPLE
PS C:\> $cred = Get-Credential sqladmin
Get-DbaDbBackupHistory -SqlInstance SqlInstance2014a -SqlCredential $cred
Does the same as above but connect to SqlInstance2014a as SQL user "sqladmin"
.EXAMPLE
PS C:\> Get-DbaDbBackupHistory -SqlInstance SqlInstance2014a -Database db1, db2 -Since '2016-07-01 10:47:00'
Returns backup information only for databases db1 and db2 on SqlInstance2014a since July 1, 2016 at 10:47 AM.
.EXAMPLE
PS C:\> Get-DbaDbBackupHistory -SqlInstance sql2014 -Database AdventureWorks2014, pubs -Force | Format-Table
Returns information only for AdventureWorks2014 and pubs and formats the results as a table.
.EXAMPLE
PS C:\> Get-DbaDbBackupHistory -SqlInstance sql2014 -Database AdventureWorks2014 -Last
Returns information about the most recent full, differential and log backups for AdventureWorks2014 on sql2014.
.EXAMPLE
PS C:\> Get-DbaDbBackupHistory -SqlInstance sql2014 -Database AdventureWorks2014 -Last -DeviceType Disk
Returns information about the most recent full, differential and log backups for AdventureWorks2014 on sql2014, but only for backups to disk.
.EXAMPLE
PS C:\> Get-DbaDbBackupHistory -SqlInstance sql2014 -Database AdventureWorks2014 -Last -DeviceType 148,107
Returns information about the most recent full, differential and log backups for AdventureWorks2014 on sql2014, but only for backups with device_type 148 and 107.
.EXAMPLE
PS C:\> Get-DbaDbBackupHistory -SqlInstance sql2014 -Database AdventureWorks2014 -LastFull
Returns information about the most recent full backup for AdventureWorks2014 on sql2014.
.EXAMPLE
PS C:\> Get-DbaDbBackupHistory -SqlInstance sql2014 -Database AdventureWorks2014 -Type Full
Returns information about all Full backups for AdventureWorks2014 on sql2014.
.EXAMPLE
PS C:\> Get-DbaRegServer -SqlInstance sql2016 | Get-DbaDbBackupHistory
Returns database backup information for every database on every server listed in the Central Management Server on sql2016.
.EXAMPLE
PS C:\> Get-DbaDbBackupHistory -SqlInstance SqlInstance2014a, sql2016 -Force
Returns detailed backup history for all databases on SqlInstance2014a and sql2016.
.EXAMPLE
PS C:\> Get-DbaDbBackupHistory -SqlInstance sql2016 -Database db1 -RecoveryFork 38e5e84a-3557-4643-a5d5-eed607bef9c6 -Last
If db1 has multiple recovery forks, specifying the RecoveryFork GUID will restrict the search to that fork.
#>
[CmdletBinding(DefaultParameterSetName = "Default")]
param (
[parameter(Mandatory, ValueFromPipeline)]
[DbaInstanceParameter[]]
$SqlInstance,
[PsCredential]$SqlCredential,
[object[]]$Database,
[object[]]$ExcludeDatabase,
[switch]$IncludeCopyOnly,
[Parameter(ParameterSetName = "NoLast")]
[switch]$Force,
[DateTime]$Since = (Get-Date '01/01/1970'),
[ValidateScript( { ($_ -match '^(\{){0,1}[0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}(\}){0,1}$') -or ('' -eq $_) })]
[string]$RecoveryFork,
[switch]$Last,
[switch]$LastFull,
[switch]$LastDiff,
[switch]$LastLog,
[string[]]$DeviceType,
[switch]$Raw,
[bigint]$LastLsn,
[switch]$IncludeMirror,
[ValidateSet("Full", "Log", "Differential", "File", "Differential File", "Partial Full", "Partial Differential")]
[string[]]$Type,
[switch]$AgCheck,
[switch]$IgnoreDiffBackup,
[switch]$EnableException
)
begin {
Write-Message -Level System -Message "Active Parameter set: $($PSCmdlet.ParameterSetName)."
Write-Message -Level System -Message "Bound parameters: $($PSBoundParameters.Keys -join ", ")"
$deviceTypeMapping = @{
'Disk' = 2
'Permanent Disk Device' = 102
'Tape' = 5
'Permanent Tape Device' = 105
'Pipe' = 6
'Permanent Pipe Device' = 106
'Virtual Device' = 7
'URL' = 9
}
$deviceTypeFilter = @()
foreach ($devType in $DeviceType) {
if ($devType -in $deviceTypeMapping.Keys) {
$deviceTypeFilter += $deviceTypeMapping[$devType]
} else {
$deviceTypeFilter += $devType
}
}
$backupTypeMapping = @{
'Log' = 'L'
'Full' = 'D'
'File' = 'F'
'Differential' = 'I'
'Differential File' = 'G'
'Partial Full' = 'P'
'Partial Differential' = 'Q'
}
$backupTypeFilter = @()
foreach ($typeFilter in $Type) {
$backupTypeFilter += $backupTypeMapping[$typeFilter]
}
}
process {
if ($AgCheck) {
Stop-Function -Message "Parameter AGCheck is deprecated. This command does not check for history from replicas even if this paramater is not provided. The functionality to also get the history from all replicas if SqlInstance is part on an availability group has been moved to Get-DbaAgBackupHistory."
return
}
foreach ($instance in $SqlInstance) {
try {
$server = Connect-SqlInstance -SqlInstance $instance -SqlCredential $SqlCredential -MinimumVersion 9
} catch {
Stop-Function -Message "Error occurred while establishing connection to $instance" -Category ConnectionError -ErrorRecord $_ -Target $instance -Continue
}
if ($server.VersionMajor -ge 12) {
$compressedFlag = $true
# 2014 introduced encryption
$backupCols = "
backupset.backup_size AS TotalSize,
backupset.compressed_backup_size as CompressedBackupSize,
encryptor_thumbprint as EncryptorThumbprint,
encryptor_type as EncryptorType,
key_algorithm AS KeyAlgorithm"
} elseif ($server.VersionMajor -ge 10 -and $server.VersionMajor -lt 12) {
$compressedFlag = $true
# 2008 introduced compressed_backup_size
$backupCols = "
backupset.backup_size AS TotalSize,
backupset.compressed_backup_size as CompressedBackupSize,
NULL as EncryptorThumbprint,
NULL as EncryptorType,
NULL AS KeyAlgorithm"
} else {
$compressedFlag = $false
$backupCols = "
backupset.backup_size AS TotalSize,
NULL as CompressedBackupSize,
NULL as EncryptorThumbprint,
NULL as EncryptorType,
NULL AS KeyAlgorithm"
}
$databases = @()
if ($null -ne $Database) {
foreach ($db in $Database) {
$databases += [PSCustomObject]@{ name = $db }
}
} else {
$databases = $server.Databases
}
if ($ExcludeDatabase) {
$databases = $databases | Where-Object Name -NotIn $ExcludeDatabase
}
foreach ($d in $deviceTypeFilter) {
$deviceTypeFilterRight = "IN ('" + ($deviceTypeFilter -Join "','") + "')"
}
foreach ($b in $backupTypeFilter) {
$backupTypeFilterRight = "IN ('" + ($backupTypeFilter -Join "','") + "')"
}
if ($last) {
foreach ($db in $databases) {
if ($since) {
$sinceSqlFilter = "AND backupset.backup_finish_date >= CONVERT(datetime,'$($Since.ToString("yyyy-MM-ddTHH:mm:ss", [System.Globalization.CultureInfo]::InvariantCulture))',126)"
}
if ($RecoveryFork) {
$recoveryForkSqlFilter = "AND backupset.last_recovery_fork_guid ='$RecoveryFork'"
}
if ($null -eq (Get-PSCallStack)[1].Command -or '{ScriptBlock}' -eq (Get-PSCallStack)[1].Command) {
$forkCheckSql = "
SELECT
database_name,
MIN(database_backup_lsn) as 'FirstLsn',
MAX(database_backup_lsn) as 'FinalLsn',
MIN(backup_start_date) as 'MinDate',
MAX(backup_finish_date) as 'MaxDate',
last_recovery_fork_guid 'RecFork',
count(1) as 'backupcount'
FROM msdb.dbo.backupset
WHERE database_name='$($db.name)'
$sinceSqlFilter
$recoveryForkSqlFilter
GROUP by database_name, last_recovery_fork_guid
ORDER by MaxDate Asc
"
$results = $server.ConnectionContext.ExecuteWithResults($forkCheckSql).Tables.Rows
if ($results.count -gt 1) {
if (-not $LastFull) {
Write-Message -Message "Found backups from multiple recovery forks for $($db.name) on $($server.name), this may affect your results" -Level Warning
foreach ($result in $results) {
Write-Message -Message "Between $($result.MinDate)/$($result.FirstLsn) and $($result.MaxDate)/$($result.FinalLsn) $($result.database_name) was on Recovery Fork GUID $($result.RecFork) ($($result.backupcount) backups)" -Level Warning
}
}
if ($null -eq $RecoveryFork) {
$RecoveryFork = $results[-1].RecFork
Write-Message -Message "Defaulting to last Recovery Fork, ID - $RecoveryFork"
}
}
}
#Get the full and build upwards
$allBackups = @()
$allBackups += $fullDb = Get-DbaDbBackupHistory -SqlInstance $server -Database $db.Name -LastFull -raw:$Raw -DeviceType $DeviceType -IncludeCopyOnly:$IncludeCopyOnly -Since:$since -RecoveryFork $RecoveryFork
if (-not $IgnoreDiffBackup) {
$diffDb = Get-DbaDbBackupHistory -SqlInstance $server -Database $db.Name -LastDiff -raw:$Raw -DeviceType $DeviceType -IncludeCopyOnly:$IncludeCopyOnly -Since:$since -RecoveryFork $RecoveryFork
}
if ($diffDb.LastLsn -gt $fullDb.LastLsn -and $diffDb.DatabaseBackupLSN -eq $fullDb.CheckPointLSN ) {
Write-Message -Level Verbose -Message "Valid Differential backup "
$allBackups += $diffDb
$tlogStartDsn = ($diffDb.FirstLsn -as [bigint])
} else {
if ($IgnoreDiffBackup) {
Write-Message -Level Verbose -Message "Ignoring Diff backups, so using Full backup FirstLSN"
} else {
Write-Message -Level Verbose -Message "No Diff found"
}
try {
[bigint]$tlogStartDsn = $fullDb.FirstLsn.ToString()
} catch {
continue
}
}
if ($IncludeCopyOnly -eq $true) {
Write-Message -Level Verbose -Message 'Copy Only check'
$allBackups += Get-DbaDbBackupHistory -SqlInstance $server -Database $db.Name -raw:$raw -DeviceType $DeviceType -LastLsn $tlogStartDsn -IncludeCopyOnly:$IncludeCopyOnly -Since:$since -RecoveryFork $RecoveryFork | Where-Object { $_.Type -eq 'Log' -and [bigint]$_.LastLsn -gt [bigint]$tlogStartDsn -and $_.LastRecoveryForkGuid -eq $fullDb.LastRecoveryForkGuid }
} else {
$allBackups += Get-DbaDbBackupHistory -SqlInstance $server -Database $db.Name -raw:$raw -DeviceType $DeviceType -LastLsn $tlogStartDsn -IncludeCopyOnly:$IncludeCopyOnly -Since:$since -RecoveryFork $RecoveryFork | Where-Object { $_.Type -eq 'Log' -and [bigint]$_.LastLsn -gt [bigint]$tlogStartDsn -and [bigint]$_.DatabaseBackupLSN -eq [bigint]$fullDb.CheckPointLSN -and $_.LastRecoveryForkGuid -eq $fullDb.LastRecoveryForkGuid }
}
#This line does the output for -Last!!!
$allBackups | Sort-Object -Property LastLsn, Type
}
continue
}
if ($LastFull -or $LastDiff -or $LastLog) {
if ($LastFull) {
$first = 'D'; $second = 'P'
}
if ($LastDiff) {
$first = 'I'; $second = 'Q'
}
if ($LastLog) {
$first = 'L'; $second = 'L'
}
$databases = $databases | Select-Object -Unique -Property Name
$sql = ""
foreach ($db in $databases) {
Write-Message -Level Verbose -Message "Processing $($db.name)" -Target $db
if ($since) {
$sinceSqlFilter = "AND backupset.backup_finish_date >= CONVERT(datetime,'$($Since.ToString("yyyy-MM-ddTHH:mm:ss", [System.Globalization.CultureInfo]::InvariantCulture))',126)"
}
if ($RecoveryFork) {
$recoveryForkSqlFilter = "AND backupset.last_recovery_fork_guid ='$RecoveryFork'"
}
if ((Get-PSCallStack)[1].Command -notlike ' Get-DbaDbBackupHistory*') {
$forkCheckSql = "
SELECT
database_name,
MIN(database_backup_lsn) as 'FirstLsn',
MAX(database_backup_lsn) as 'FinalLsn',
MIN(backup_start_date) as 'MinDate',
MAX(backup_finish_date) as 'MaxDate',
last_recovery_fork_guid 'RecFork',
count(1) as 'backupcount'
FROM msdb.dbo.backupset
WHERE database_name='$($db.name)'
$sinceSqlFilter
$recoveryForkSqlFilter
GROUP by database_name, last_recovery_fork_guid
"
$results = $server.ConnectionContext.ExecuteWithResults($forkCheckSql).Tables.Rows
if ($results.count -gt 1) {
if (-not $LastFull) {
Write-Message -Message "Found backups from multiple recovery forks for $($db.name) on $($server.name), this may affect your results" -Level Warning
foreach ($result in $results) {
Write-Message -Message "Between $($result.MinDate)/$($result.FirstLsn) and $($result.MaxDate)/$($result.FinalLsn) $($result.database_name) was on Recovery Fork GUID $($result.RecFork) ($($result.backupcount) backups)" -Level Warning
}
}
}
}
$whereCopyOnly = $null
if ($true -ne $IncludeCopyOnly) {
$whereCopyOnly = " AND is_copy_only='0' "
}
if ($true -ne $IncludeMirror) {
$whereMirror = " AND mediafamily.mirror='0' "
}
if ($deviceTypeFilter) {
$devTypeFilterWhere = "AND mediafamily.device_type $deviceTypeFilterRight"
}
if ($since) {
$sinceSqlFilter = "AND backupset.backup_finish_date >= CONVERT(datetime,'$($Since.ToString("yyyy-MM-ddTHH:mm:ss", [System.Globalization.CultureInfo]::InvariantCulture))',126)"
}
# recap for future editors (as this has been discussed over and over):
# - original editors (from hereon referred as "we") rank over backupset.last_lsn desc, backupset.backup_finish_date desc for a good reason: DST
# all times are recorded with the timezone of the server
# - we thought about ranking over backupset.backup_set_id desc, backupset.last_lsn desc, backupset.backup_finish_date desc
# but there is no explicit documentation about "when" a row gets inserted into backupset. Theoretically it _could_
# happen that backup_set_id for the same database has not the same order of last_lsn.
# - given ultimately to restore something lsn IS the source of truth, we decided to trust that and only that
# - we know that sometimes it happens to drop a database without deleting the history. Assuming then to create a database with the same name,
# and given the lsn are composed in the first part by the VLF SeqID, it happens seldomly that for the same database_name backupset holds
# last_lsn out of order. To avoid this behaviour, we filter by database_guid choosing the guid that has MAX(backup_finish_date), as we know
# last_lsn cannot be out-of-order for the same database, and the same database cannot have different database_guid
# - because someone could restore a very old backup with low lsn values and continue to use this database we filter
# not only by database_guid but also by the recovery fork of the last backup (see issue #6730 for more details)
$sql += "SELECT
a.BackupSetRank,
a.Server,
'' as AvailabilityGroupName,
a.[Database],
a.Username,
a.Start,
a.[End],
a.Duration,
a.[Path],
a.Type,
a.TotalSize,
a.CompressedBackupSize,
a.MediaSetId,
a.BackupSetID,
a.Software,
a.position,
a.first_lsn,
a.database_backup_lsn,
a.checkpoint_lsn,
a.last_lsn,
a.first_lsn as 'FirstLSN',
a.database_backup_lsn as 'DatabaseBackupLsn',
a.checkpoint_lsn as 'CheckpointLsn',
a.last_lsn as 'LastLsn',
a.software_major_version,
a.DeviceType,
a.is_copy_only,
a.last_recovery_fork_guid,
a.recovery_model,
a.EncryptorThumbprint,
a.EncryptorType,
a.KeyAlgorithm
FROM (
SELECT
RANK() OVER (ORDER BY backupset.last_lsn desc, backupset.backup_finish_date DESC) AS 'BackupSetRank',
backupset.database_name AS [Database],
backupset.user_name AS Username,
backupset.backup_start_date AS Start,
backupset.server_name as [Server],
backupset.backup_finish_date AS [End],
DATEDIFF(SECOND, backupset.backup_start_date, backupset.backup_finish_date) AS Duration,
mediafamily.physical_device_name AS Path,
$backupCols,
CASE backupset.type
WHEN 'L' THEN 'Log'
WHEN 'D' THEN 'Full'
WHEN 'F' THEN 'File'
WHEN 'I' THEN 'Differential'
WHEN 'G' THEN 'Differential File'
WHEN 'P' THEN 'Partial Full'
WHEN 'Q' THEN 'Partial Differential'
ELSE NULL
END AS Type,
backupset.media_set_id AS MediaSetId,
mediafamily.media_family_id as mediafamilyid,
backupset.backup_set_id as BackupSetID,
CASE mediafamily.device_type
WHEN 2 THEN 'Disk'
WHEN 102 THEN 'Permanent Disk Device'
WHEN 5 THEN 'Tape'
WHEN 105 THEN 'Permanent Tape Device'
WHEN 6 THEN 'Pipe'
WHEN 106 THEN 'Permanent Pipe Device'
WHEN 7 THEN 'Virtual Device'
WHEN 9 THEN 'URL'
ELSE 'Unknown'
END AS DeviceType,
backupset.position,
backupset.first_lsn,
backupset.database_backup_lsn,
backupset.checkpoint_lsn,
backupset.last_lsn,
backupset.software_major_version,
mediaset.software_name AS Software,
backupset.is_copy_only,
backupset.last_recovery_fork_guid,
backupset.recovery_model
FROM msdb..backupmediafamily AS mediafamily
JOIN msdb..backupmediaset AS mediaset ON mediafamily.media_set_id = mediaset.media_set_id
JOIN msdb..backupset AS backupset ON backupset.media_set_id = mediaset.media_set_id
JOIN (
SELECT TOP 1 database_guid, last_recovery_fork_guid
FROM msdb..backupset
WHERE database_name = '$($db.Name)'
ORDER BY backup_finish_date DESC
) AS last_guids ON last_guids.database_guid = backupset.database_guid AND last_guids.last_recovery_fork_guid = backupset.last_recovery_fork_guid
WHERE (type = '$first' OR type = '$second')
$whereCopyOnly
$devTypeFilterWhere
$sinceSqlFilter
$recoveryForkSqlFilter
$whereMirror
) AS a
WHERE a.BackupSetRank = 1
ORDER BY a.Type;
"
}
$sql = $sql -join "; "
} else {
if ($Force -eq $true) {
$select = "SELECT * "
} else {
$select = "
SELECT
backupset.database_name AS [Database],
backupset.user_name AS Username,
backupset.server_name as [server],
backupset.backup_start_date AS [Start],
backupset.backup_finish_date AS [End],
DATEDIFF(SECOND, backupset.backup_start_date, backupset.backup_finish_date) AS Duration,
mediafamily.physical_device_name AS Path,
$backupCols,
CASE backupset.type
WHEN 'L' THEN 'Log'
WHEN 'D' THEN 'Full'
WHEN 'F' THEN 'File'
WHEN 'I' THEN 'Differential'
WHEN 'G' THEN 'Differential File'
WHEN 'P' THEN 'Partial Full'
WHEN 'Q' THEN 'Partial Differential'
ELSE NULL
END AS Type,
backupset.media_set_id AS MediaSetId,
mediafamily.media_family_id as MediaFamilyId,
backupset.backup_set_id as BackupSetId,
CASE mediafamily.device_type
WHEN 2 THEN 'Disk'
WHEN 102 THEN 'Permanent Disk Device'
WHEN 5 THEN 'Tape'
WHEN 105 THEN 'Permanent Tape Device'
WHEN 6 THEN 'Pipe'
WHEN 106 THEN 'Permanent Pipe Device'
WHEN 7 THEN 'Virtual Device'
WHEN 9 THEN 'URL'
ELSE 'Unknown'
END AS DeviceType,
backupset.position,
backupset.first_lsn,
backupset.database_backup_lsn,
backupset.checkpoint_lsn,
backupset.last_lsn,
backupset.first_lsn as 'FirstLSN',
backupset.database_backup_lsn as 'DatabaseBackupLsn',
backupset.checkpoint_lsn as 'CheckpointLsn',
backupset.last_lsn as 'LastLsn',
backupset.software_major_version,
mediaset.software_name AS Software,
backupset.is_copy_only,
backupset.last_recovery_fork_guid,
backupset.recovery_model"
}
$from = " FROM msdb..backupmediafamily mediafamily
INNER JOIN msdb..backupmediaset mediaset ON mediafamily.media_set_id = mediaset.media_set_id
INNER JOIN msdb..backupset backupset ON backupset.media_set_id = mediaset.media_set_id"
if ($Database -or $ExcludeDatabase -or $Since -or $Last -or $LastFull -or $LastLog -or $LastDiff -or $deviceTypeFilter -or $LastLsn -or $backupTypeFilter) {
$where = " WHERE "
}
$whereArray = @()
if ($Database.length -gt 0 -or $ExcludeDatabase.length -gt 0) {
$dbList = $databases.Name -join "','"
$whereArray += "database_name IN ('$dbList')"
}
if ($true -ne $IncludeCopyOnly) {
$whereArray += "is_copy_only='0'"
}
if ($Last -or $LastFull -or $LastLog -or $LastDiff) {
$tempWhere = $whereArray -join " AND "
$whereArray += "type = 'Full' AND mediaset.media_set_id = (SELECT TOP 1 mediaset.media_set_id $from $tempWhere ORDER BY backupset.last_lsn DESC)"
}
if ($IgnoreDiffBackup) {
$whereArray += "backupset.type not in ('I','G','Q')"
}
if ($null -ne $Since) {
$whereArray += "backupset.backup_finish_date >= CONVERT(datetime,'$($Since.ToString("yyyy-MM-ddTHH:mm:ss", [System.Globalization.CultureInfo]::InvariantCulture))',126)"
}
if ($deviceTypeFilter) {
$whereArray += "mediafamily.device_type $deviceTypeFilterRight"
}
if ($backupTypeFilter) {
$whereArray += "backupset.type $backupTypeFilterRight"
}
if ($LastLsn) {
$whereArray += "backupset.last_lsn > $LastLsn"
}
if ($where.Length -gt 0) {
$whereArray = $whereArray -join " AND "
$where = "$where $whereArray"
}
$sql = "$select $from $where ORDER BY backupset.last_lsn DESC"
}
Write-Message -Level Debug -Message "SQL Statement: `n$sql"
Write-Message -Level SomewhatVerbose -Message "Executing sql query on $server."
$results = $server.ConnectionContext.ExecuteWithResults($sql).Tables.Rows | Select-Object * -ExcludeProperty BackupSetRank, RowError, RowState, Table, ItemArray, HasErrors
if ($raw) {
Write-Message -Level SomewhatVerbose -Message "Processing as Raw Output."
$results | Select-Object *, @{ Name = "FullName"; Expression = { $_.Path } }
Write-Message -Level SomewhatVerbose -Message "$($results.Count) result sets found."
} else {
Write-Message -Level SomewhatVerbose -Message "Processing as grouped output."
$groupedResults = $results | Group-Object -Property BackupsetId
Write-Message -Level SomewhatVerbose -Message "$($groupedResults.Count) result-groups found."
$groupResults = @()
$backupSetIds = $groupedResults.Name
$backupSetIdsList = $backupSetIds -Join ","
if ($groupedResults.Count -gt 0) {
$backupSetIdsWhere = "backup_set_id IN ($backupSetIdsList)"
$fileAllSql = "SELECT backup_set_id, file_type as FileType, logical_name as LogicalName, physical_name as PhysicalName
FROM msdb..backupfile WHERE $backupSetIdsWhere
AND [state] <> 8;" #Used to eliminate data files that no longer exist
Write-Message -Level Debug -Message "FileSQL: $fileAllSql"
$fileListResults = $server.Query($fileAllSql)
} else {
$fileListResults = @()
}
$fileListHash = @{ }
foreach ($fl in $fileListResults) {
if (-not($fileListHash.ContainsKey($fl.backup_set_id))) {
$fileListHash[$fl.backup_set_id] = @()
}
$fileListHash[$fl.backup_set_id] += $fl
}
foreach ($group in $groupedResults) {
$commonFields = $group.Group[0]
$groupLength = $group.Group.Count
if ($groupLength -eq 1) {
$start = $commonFields.Start
$end = $commonFields.End
$duration = New-TimeSpan -Seconds $commonFields.Duration
} else {
$start = ($group.Group.Start | Measure-Object -Minimum).Minimum
$end = ($group.Group.End | Measure-Object -Maximum).Maximum
$duration = New-TimeSpan -Seconds ($group.Group.Duration | Measure-Object -Maximum).Maximum
}
$compressedBackupSize = $commonFields.CompressedBackupSize
if ($compressedFlag -eq $true) {
$ratio = [Math]::Round(($commonFields.TotalSize) / ($compressedBackupSize), 2)
} else {
$compressedBackupSize = $null
$ratio = 1
}
$historyObject = New-Object Sqlcollaborative.Dbatools.Database.BackupHistory
$historyObject.ComputerName = $server.ComputerName
$historyObject.InstanceName = $server.ServiceName
$historyObject.SqlInstance = $server.DomainInstanceName
$historyObject.Database = $commonFields.Database
$historyObject.UserName = $commonFields.UserName
$historyObject.Start = $start
$historyObject.End = $end
$historyObject.Duration = $duration
$historyObject.Path = $group.Group.Path
$historyObject.TotalSize = $commonFields.TotalSize
$historyObject.CompressedBackupSize = $compressedBackupSize
$historyObject.CompressionRatio = $ratio
$historyObject.Type = $commonFields.Type
$historyObject.BackupSetId = $commonFields.BackupSetId
$historyObject.DeviceType = $commonFields.DeviceType
$historyObject.Software = $commonFields.Software
$historyObject.FullName = $group.Group.Path
$historyObject.FileList = $fileListHash[$commonFields.BackupSetID] | Select-Object FileType, LogicalName, PhysicalName
$historyObject.Position = $commonFields.Position
$historyObject.FirstLsn = $commonFields.First_LSN
$historyObject.DatabaseBackupLsn = $commonFields.database_backup_lsn
$historyObject.CheckpointLsn = $commonFields.checkpoint_lsn
$historyObject.LastLsn = $commonFields.Last_Lsn
$historyObject.SoftwareVersionMajor = $commonFields.Software_Major_Version
$historyObject.IsCopyOnly = ($commonFields.is_copy_only -eq 1)
$historyObject.LastRecoveryForkGuid = $commonFields.last_recovery_fork_guid
$historyObject.RecoveryModel = $commonFields.recovery_model
$historyObject.EncryptorType = $commonFields.EncryptorType
$historyObject.EncryptorThumbprint = $commonFields.EncryptorThumbprint
$historyObject.KeyAlgorithm = $commonFields.KeyAlgorithm
$historyObject
}
$groupResults | Sort-Object -Property LastLsn, Type
}
}
}
}