Skip to content

Commit 35fc185

Browse files
committed
merge changes from development
1 parent bab9bd7 commit 35fc185

1 file changed

Lines changed: 24 additions & 23 deletions

File tree

public/Restore-DbaDatabase.ps1

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -889,29 +889,30 @@ function Restore-DbaDatabase {
889889
}
890890
try {
891891
$parms = @{
892-
SqlInstance = $RestoreInstance
893-
WithReplace = $WithReplace
894-
RestoreTime = $RestoreTime
895-
StandbyDirectory = $StandbyDirectory
896-
NoRecovery = $NoRecovery
897-
Continue = $Continue
898-
OutputScriptOnly = $OutputScriptOnly
899-
BlockSize = $BlockSize
900-
MaxTransferSize = $MaxTransferSize
901-
BufferCount = $Buffercount
902-
KeepCDC = $KeepCDC
903-
VerifyOnly = $VerifyOnly
904-
PageRestore = $PageRestore
905-
StorageCredential = $StorageCredential
906-
KeepReplication = $KeepReplication
907-
StopMark = $StopMark
908-
StopAfterDate = $StopAfterDate
909-
StopBefore = $StopBefore
910-
StopAtLsn = $StopAtLsn
911-
ExecuteAs = $ExecuteAs
912-
Checksum = $Checksum
913-
Restart = $Restart
914-
EnableException = $true
892+
SqlInstance = $RestoreInstance
893+
WithReplace = $WithReplace
894+
RestoreTime = $RestoreTime
895+
StandbyDirectory = $StandbyDirectory
896+
NoRecovery = $NoRecovery
897+
Continue = $Continue
898+
OutputScriptOnly = $OutputScriptOnly
899+
BlockSize = $BlockSize
900+
MaxTransferSize = $MaxTransferSize
901+
BufferCount = $Buffercount
902+
KeepCDC = $KeepCDC
903+
ErrorBrokerConversations = $ErrorBrokerConversations
904+
VerifyOnly = $VerifyOnly
905+
PageRestore = $PageRestore
906+
StorageCredential = $StorageCredential
907+
KeepReplication = $KeepReplication
908+
StopMark = $StopMark
909+
StopAfterDate = $StopAfterDate
910+
StopBefore = $StopBefore
911+
StopAtLsn = $StopAtLsn
912+
ExecuteAs = $ExecuteAs
913+
Checksum = $Checksum
914+
Restart = $Restart
915+
EnableException = $true
915916
}
916917
$FilteredBackupHistory | Where-Object { $_.IsVerified -eq $true } | Invoke-DbaAdvancedRestore @parms
917918
} catch {

0 commit comments

Comments
 (0)