Get-VEHANARestoreJobActionLogItems
Short Description
Returns action log items for a SAP HANA restore job.
Applies to
Veeam Backup & Replication
Product Edition: Enterprise Plus, Veeam Universal License
Syntax
Get-VEHANARestoreJobActionLogItems [-Session] <VEHANARestoreSession> -RestoreJob <VEHANARestore> [<CommonParameters>] |
Detailed Description
This cmdlet returns action log items for a specific SAP HANA restore job, giving you a detailed overview of the restore process.
Parameters
Parameter | DescriptionR | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
Session | Specifies the restore session that the restore job was started in. | Accepts the VEHANARestoreSession object. To get this object, run the Get-VEHANARestoreSession cmdlet. | True | 0 | True (ByValue) |
RestoreJob | Specifies an SAP HANA restore job. The cmdlet will return information about the specified restore job. | Accepts the VEHANARestore object. To get this object, run the Get-VEHANARestoreJob cmdlet. | True | Named | True (ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Output Object
The cmdlet returns the VEHANARestoreActionLogItem[]object that contains information about the SAP HANA restore job.
Example
Getting Action Log Items for Specific Restore Job
This example gets action log items for the specified restore job.
$session = Get-VEHANARestoreSession $system = Get-VEHANASystem $session[0] $database = (Get-VEHANADatabase $system)[0] $restorejob = Restore-VEHANADatabase -Database $database Get-VEHANARestoreJobActionLogItems -Session $session -RestoreJob $restoreJob |
Perform the following steps:
- Run the Get-VEHANARestoreSession cmdlet. Save the result to the $session variable.
The cmdlet will return an array of active restore sessions. Note the ordinal number of the necessary restore session. In our example, it is the first restore session in the array.
- Run the Get-VEHANASystem cmdlet. Set the first restore session in the $session variable as the Session parameter value.
- Run the Get-VEHANADatabase cmdlet and set the $system variable as the System parameter value. Select the necessary database returned by this command and save it to the $database variable. In our example, it is the first database in the array.
- Run the Restore-VEHANADatabase cmdlet and set the $database variable as the Database parameter value. Save the result to the $restorejob variable.
- Run the Get-VEHANARestoreJobActionLogItems cmdlet. Set the $session variable as the Session parameter value and set the $restorejob variable as the RestoreJob parameter value.
Related Commands