Stop-VEPSQLDatabaseRestore
Short Description
Stops a restore job for a backed-up PostgreSQL database.
Applies to
Veeam Backup & Replication
Product Edition: Enterprise Plus, Veeam Universal License
Syntax
|
Stop-VEPSQLDatabaseRestore [-Restore] <VEPSQLDatabaseRestore> [-Force] [<CommonParameters>] |
Detailed Description
This cmdlet stops a restore job for a backed-up PostgreSQL database.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Restore |
Specifies a restore job for a PostgreSQL database. |
Accepts the VEPSQLDatabaseRestore object. To get this object, run the Get-VEPSQLDatabaseRestore cmdlet. |
True |
0 |
True (ByValue) |
|
Force |
Defines that the cmdlet will show no prompt before executing the command. |
SwitchParameter |
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About Common Parameters section of Microsoft Docs.
Output Object
None.
Example
Stopping Restore Job
This example shows how to stop the restore job.
|
$restore = Get-VEPSQLDatabaseRestore Stop-VEPSQLDatabaseRestore -Restore $restore[3] -Force |
Perform the following steps:
- Run the Get-VEPSQLDatabaseRestore cmdlet. Save the result to the $restore variable.
The cmdlet will return an array of active restore jobs. Note the ordinal number of the necessary restore job (in this example, it is the fourth restore job in the array).
- Run the Stop-VEPSQLDatabaseRestore cmdlet. Set the $restore variable as the Restore parameter value and select the necessary restore job. Note that the Force parameter is also provided, which will cause the restore job to be stopped without any additional prompts or warnings.
Related Commands