--- title: "Stop-VEORInstantRecovery" description: "Stops an active instant recovery session for an Oracle database. Product: Veeam Backup & Replication Product Edition: Enterprise, Enterprise Plus, Veeam Universal License This cmdlet stops an active instant recovery session for an Oracle database." canonical: "https://helpcenter.veeam.com/docs/vbr/explorers_powershell/stop-veorinstantrecovery.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for Oracle > Stop-VEORInstantRecovery" dateModified: "2026-08-20" --- # 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] [-Force] [] ``` ## Detailed Description This cmdlet stops an active instant recovery session for an Oracle database. ::: note Consider the following: - The cmdlet stops instant recovery sessions initiated in the PowerShell console only. - Instant recovery sessions will not stop automatically if you close the PowerShell console. To stop the instant recovery session, you must run the `Stop-VEORInstantRecovery` cmdlet. ::: ## 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 VEORIRDatabase object. To get this object, run the Get-VEORIRDatabase cmdlet.

VEORIRDatabase

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.

SwitchParameter

False

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the [About Common Parameters](http://go.microsoft.com/fwlink/p/?LinkID=113216) section of Microsoft Learn. ## Examples ::: example ### 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: 1. Run the [`Get-VEORIRDatabase`](get-veorirdatabase.md) cmdlet. Specify the `DatabaseName` parameter value. Save the result to the `$IRDatabase` variable. 2. Run the `Stop-VEORInstantRecovery` cmdlet. Set the `$IRDatabase` variable as the `Database` parameter value. ::: ## Related Commands [`Get-VEORIRDatabase`](get-veorirdatabase.md)