Restart-VEHANADatabaseRestore
Short Description
Restarts a failed restore job for an SAP HANA database.
Product: Veeam Backup & Replication
Product Edition: Enterprise Plus, Veeam Universal License
Syntax
|
Restart-VEHANADatabaseRestore -RestoreJob <VEHANARestore> [<CommonParameters>] |
Detailed Description
This cmdlet restarts a failed restore job for an SAP HANA database.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
RestoreJob |
Specifies the SAP HANA restore job that you want to restart.
Accepts the |
True |
Named |
True (ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About Common Parameters section of Microsoft Docs.
Examples
Restarting SAP HANA Restore Process
This example shows how to restart a failed restore job for an SAP HANA database.
|
$restorejob = Get-VEHANADatabaseRestore Restart-VEHANADatabaseRestore -RestoreJob $restorejob[0] |
Perform the following steps:
- Run the
Get-VEHANADatabaseRestoreReturns active SAP HANA restore jobs. cmdlet. Save the result to the$restorejobvariable.The cmdlet will return an array of restore jobs. Note the ordinal number of the necessary restore job. In this example, it is the first restore job in the array.
- Run the
Restart-VEHANADatabaseRestorecmdlet. Set the$restorejobvariable as theRestoreJobparameter value.
Related Commands
Get-VEHANADatabaseRestoreReturns active SAP HANA restore jobs.