Stop-VEORInstantRecovery
Short Description
Stops an active instant recovery session for an Oracle database.
Product: Veeam Backup & Replication
Product Edition: Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Stop-VEORInstantRecovery [-Database] <VEORIRDatabase> [-Force] [<CommonParameters>] |
Detailed Description
This cmdlet stops an active instant recovery session for an Oracle database.
Note |
|
Consider the following:
|
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Database |
Specifies an Oracle database. The cmdlet will stop the instant recovery session of this database.
Accepts the |
True |
0 |
True (ByValue) |
|
|
Force |
Defines that the cmdlet will stop the instant recovery session of an Oracle database without showing warnings in the PowerShell console. |
|
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 Learn.
Examples
Stopping Restore Session of Oracle Database
This example shows how to stop an instant recovery session of an Oracle database.
|
$IRDatabase = Get-VEORIRDatabase -DatabaseName "orcl1.tech.local" Stop-VEORInstantRecovery -Database $IRDatabase |
Perform the following steps:
- Run the
Get-VEORIRDatabaseReturns Oracle databases that are published within an instant recovery session. cmdlet. Specify theDatabaseNameparameter value. Save the result to the$IRDatabasevariable. - Run the
Stop-VEORInstantRecoverycmdlet. Set the$IRDatabasevariable as theDatabaseparameter value.
Related Commands
Get-VEORIRDatabaseReturns Oracle databases that are published within an instant recovery session.