functions/Restore-SqlBackupFromDirectory.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 |
Function Restore-SqlBackupFromDirectory { <# .SYNOPSIS Restores SQL Server databases from the backup directory structure created by Ola Hallengren's database maintenance scripts. Different structures coming soon. .DESCRIPTION Many SQL Server database administrators use Ola Hallengren's SQL Server Maintenance Solution which can be found at http://ola.hallengren.com Hallengren uses a predictable backup structure which made it relatively easy to create a script that can restore an entire SQL Server database instance, down to the master database (next version), to a new server. This script is intended to be used in the event that the originating SQL Server becomes unavailable, thus rendering my other SQL restore script (http://goo.gl/QmfQ6s) ineffective. .PARAMETER SqlServer Required. The SQL Server to which you will be restoring the databases. .PARAMETER Path Required. The directory that contains the database backups (ex. \\fileserver\share\sqlbackups\SQLSERVERA) .PARAMETER ReuseSourceFolderStructure Restore-SqlBackupFromDirectory will restore to the default user data and log directories, unless this switch is used. Useful if you're restoring from a server that had a complex db file structure. .PARAMETER Databases Migrates ONLY specified databases. This list is auto-populated for tab completion. .PARAMETER Exclude Excludes specified databases from migration. This list is auto-populated for tab completion. .PARAMETER Force Will overwrite any existing databases on $SqlServer. .PARAMETER SqlCredential Allows you to login to servers using SQL Logins as opposed to Windows Auth/Integrated/Trusted. To use: $cred = Get-Credential, this pass this $cred to the param. Windows Authentication will be used if DestinationSqlCredential is not specified. To connect as a different Windows user, run PowerShell as that user. .PARAMETER WhatIf Shows what would happen if the command were to run. No actions are actually performed. .PARAMETER Confirm Prompts you for confirmation before executing any changing operations within the command. .PARAMETER NoRecovery Leaves the databases in No Recovery state to enable further backups to be added .NOTES Tags: DisasterRecovery, Backup, Restore Author : Chrissy LeMaire, netnerds.net Requires: sysadmin access on destination SQL Server. dbatools PowerShell module (https://dbatools.io, clemaire@gmail.com) Copyright (C) 2016 Chrissy LeMaire This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. .LINK https://dbatools.io/Restore-SqlBackupFromDirectory .EXAMPLE Restore-SqlBackupFromDirectory -SqlServer sqlcluster -Path \\fileserver\share\sqlbackups\SQLSERVER2014A Description All user databases contained within \\fileserver\share\sqlbackups\SQLSERVERA will be restored to sqlcluster, down the most recent full/differential/logs. #> #Requires -Version 3.0 [CmdletBinding()] Param ( [parameter(Mandatory = $true)] [Alias("ServerInstance","SqlInstance")] [string]$SqlServer, [parameter(Mandatory = $true)] [string]$Path, [switch]$NoRecovery, [Alias("ReuseFolderStructure")] [switch]$ReuseSourceFolderStructure, [System.Management.Automation.PSCredential]$SqlCredential, [switch]$Force ) DynamicParam { if ($Path) { $newparams = New-Object System.Management.Automation.RuntimeDefinedParameterDictionary $paramattributes = New-Object System.Management.Automation.ParameterAttribute $paramattributes.ParameterSetName = "__AllParameterSets" $paramattributes.Mandatory = $false $systemdbs = @("master", "msdb", "model", "SSIS") $dblist = (Get-ChildItem -Path $Path -Directory).Name | Where-Object { $systemdbs -notcontains $_ } $argumentlist = @() foreach ($db in $dblist) { $argumentlist += [Regex]::Escape($db) } $validationset = New-Object System.Management.Automation.ValidateSetAttribute -ArgumentList $argumentlist $combinedattributes = New-Object -Type System.Collections.ObjectModel.Collection[System.Attribute] $combinedattributes.Add($paramattributes) $combinedattributes.Add($validationset) $Databases = New-Object -Type System.Management.Automation.RuntimeDefinedParameter("Databases", [String[]], $combinedattributes) $Exclude = New-Object -Type System.Management.Automation.RuntimeDefinedParameter("Exclude", [String[]], $combinedattributes) $newparams.Add("Databases", $Databases) $newparams.Add("Exclude", $Exclude) return $newparams } } BEGIN { Function Restore-Database { <# .SYNOPSIS Restores .bak file to SQL database. Creates db if it doesn't exist. $filestructure is a custom object that contains logical and physical file locations. .EXAMPLE $filestructure = Get-SqlFileStructure $sourceserver $destserver $ReuseFolderstructure Restore-Database $destserver $dbname $backupfile $filetype .OUTPUTS $true if success $true if failure #> [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [object]$server, [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [string]$dbname, [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [string]$backupfile, [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [string]$filetype, [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [object]$filestructure ) $servername = $server.name $server.ConnectionContext.StatementTimeout = 0 $restore = New-Object "Microsoft.SqlServer.Management.Smo.Restore" $restore.ReplaceDatabase = $true foreach ($file in $filestructure.values) { $movefile = New-Object "Microsoft.SqlServer.Management.Smo.RelocateFile" $movefile.LogicalFileName = $file.logical $movefile.PhysicalFileName = $file.physical $null = $restore.RelocateFiles.Add($movefile) } try { $percent = [Microsoft.SqlServer.Management.Smo.PercentCompleteEventHandler] { Write-Progress -id 1 -activity "Restoring $dbname to $servername" -percentcomplete $_.Percent -status ([System.String]::Format("Progress: {0} %", $_.Percent)) } $restore.add_PercentComplete($percent) $restore.PercentCompleteNotification = 1 $restore.add_Complete($complete) $restore.ReplaceDatabase = $true $restore.Database = $dbname $restore.Action = $filetype $restore.NoRecovery = $true $device = New-Object -TypeName Microsoft.SqlServer.Management.Smo.BackupDeviceItem $device.name = $backupfile $device.devicetype = "File" $restore.Devices.Add($device) Write-Progress -id 1 -activity "Restoring $dbname to $servername" -percentcomplete 0 -status ([System.String]::Format("Progress: {0} %", 0)) $restore.sqlrestore($server) Write-Progress -id 1 -activity "Restoring $dbname to $servername" -status "Complete" -Completed return $true } catch { $x = $_.Exception Write-Warning "Restore failed: $x" return $false } } if (!([string]::IsNullOrEmpty($Path))) { if (!($Path.StartsWith("\\"))) { throw "Path must be a valid UNC path (\\server\share)." } if (!(Test-Path $Path)) { throw "$Path does not exist or cannot be accessed." } } Write-Output "Attempting to connect to SQL Server.." $server = Connect-SqlServer -SqlServer $SqlServer -SqlCredential $SqlCredential $server.ConnectionContext.StatementTimeout = 0 if ($server.versionMajor -lt 8) { throw "This script can only be run on SQL Server 2000 and above. Quitting." } if ($server.versionMajor -eq 8 -and $IncludeSystemDbs) { throw "Migrating system databases not supported in SQL Server 2000." } # Convert from RuntimeDefinedParameter object to regular array $Databases = $psboundparameters.Databases $Exclude = $psboundparameters.Exclude } PROCESS { $dblist = @(); $skippedb = @{ }; $migrateddb = @{ }; $systemdbs = @("master", "msdb", "model") $subdirectories = (Get-ChildItem -Directory $Path).FullName foreach ($subdirectory in $subdirectories) { if ((Get-ChildItem $subdirectory).Name -eq "FULL") { $dblist += $subdirectory; continue } } if ($dblist.count -eq 0) { throw "No databases to restore. Did you use the correct file path? Format should be \\fileshare\share\sqlbackups\sqlservername" } foreach ($db in $dblist) { $full = Get-ChildItem "$db\FULL\*.bak" | sort LastWriteTime | select -last 1 $since = $full.LastWriteTime; $full = $full.FullName $diff = $null; $logs = $null if (Test-Path "$db\DIFF") { $diff = Get-ChildItem "$db\DIFF\*.bak" | Where { $_.LastWriteTime -gt $since } | sort LastWriteTime | select -last 1 $since = $diff.LastWriteTime; $diff = $diff.fullname } if (Test-Path "$db\LOG") { $logs = (Get-ChildItem "$db\LOG\*.trn" | Where { $_.LastWriteTime -gt $since }) $logs = ($logs | Sort-Object LastWriteTime).Fullname } $restore = New-Object "Microsoft.SqlServer.Management.Smo.Restore" $device = New-Object -TypeName Microsoft.SqlServer.Management.Smo.BackupDeviceItem $full, "FILE" $restore.Devices.Add($device) try { $filelist = $restore.ReadFileList($server) } catch { throw "File list could not be determined. This is likely due to connectivity issues or tiemouts with the SQL Server, the database version is incorrect, or the SQL Server service account does not have access to the file share. Script terminating." } $header = $restore.ReadBackupHeader($server) $dbname = $header.DatabaseName if ($systemdbs -contains $dbname) { continue } if (!([string]::IsNullOrEmpty($Databases)) -and $Databases -notcontains $dbname) { continue } if (!([string]::IsNullOrEmpty($Exclude)) -and $Exclude -contains $dbname) { $skippedb.Add($dbname, "Explicitly Skipped") Continue } if ($systemdbs -contains $dbname) { continue } if ($server.databases[$dbname] -ne $null -and !$force -and $systemdbs -notcontains $dbname) { Write-Warning "$dbname exists at $SqlServer. Use -Force to drop and migrate." $skippedb[$dbname] = "Database exists at $SqlServer. Use -Force to drop and migrate." continue } if ($server.databases[$dbname] -ne $null -and $force -and $systemdbs -notcontains $dbname) { If ($Pscmdlet.ShouldProcess($SqlServer, "DROP DATABASE $dbname")) { Write-Output "$dbname already exists. -Force was specified. Dropping $dbname on $SqlServer." $dropresult = Remove-SqlDatabase $server $dbname if (!$dropresult) { $skippedb[$dbname] = "Database exists and could not be dropped."; continue } } } $filestructure = Get-OfflineSqlFileStructure $server $dbname $filelist $ReuseSourceFolderStructure if ($filestructure -eq $false) { Write-Warning "$dbname contains FILESTREAM and filestreams are not supported by destination server. Skipping." $skippedb[$dbname] = "Database contains FILESTREAM and filestreams are not supported by destination server." continue } $backupinfo = $restore.ReadBackupHeader($server) $backupversion = [version]("$($backupinfo.SoftwareVersionMajor).$($backupinfo.SoftwareVersionMinor).$($backupinfo.SoftwareVersionBuild)") Write-Output "Restoring FULL backup to $dbname to $SqlServer" $result = Restore-Database $server $dbname $full "Database" $filestructure if ($result -eq $true) { if ($diff) { Write-Output "Restoring DIFFERENTIAL backup" $result = Restore-Database $server $dbname $diff "Database" $filestructure if ($result -ne $true) { $result | fl -force; return } } if ($logs) { Write-Output "Restoring $($logs.count) LOGS" foreach ($log in $logs) { $result = Restore-Database $server $dbname $log "Log" $filestructure } } } if ($result -eq $false) { Write-Warning "$dbname could not be restored."; continue } if ($norecovery -eq $false) { $sql = "RESTORE DATABASE [$dbname] WITH RECOVERY" try { $server.databases['master'].ExecuteNonQuery($sql) $migrateddb.Add($dbname, "Successfully restored.") Write-Output "Successfully restored $dbname." } catch { Write-Error "$dbname could not be set to recovered." } try { try { $sa = Get-SqlSaLogin $server } catch { $sa = "sa" } $server.databases.refresh() $server.databases[$dbname].SetOwner($sa) $server.databases[$dbname].Alter() Write-Output "Successfully changed $dbname dbowner to sa" } catch { Write-Error "Could not update dbowner to sa." } } } #end of for each database folder } END { #Clean up $server.ConnectionContext.Disconnect() Write-Output "Database restores complete" } } |