Customise Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorised as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyse the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customised advertisements based on the pages you visited previously and to analyse the effectiveness of the ad campaigns.

No cookies to display.

ORA-00245: Control File Backup Failed; Target is Likely on a Local File System

Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
  • User AvatarKiran Dalvi
  • 02 Nov, 2021
  • 0 Comments
  • 1 Min Read

ORA-00245: Control File Backup Failed; Target is Likely on a Local File System

ORA-00245: CONTROL FILE BACKUP FAILED; TARGET IS LIKELY ON A LOCAL FILE SYSTEM

In alert log I got an issue ORA-00245: control file backup failed; target is likely on a local file system. Regarding this issue, I checked the snapshot control file location on rman prompt and observed that it was on local file system. In RAC environment, Snapshot control file backup location should be on a shared disk group so that it can be visible or accessible to all RAC nodes.

Check the configured snapshot controlfile default location.

1
2
3
4
5
6
7
8
9
RMAN> show snapshot controlfile name;
 
starting full resync of recovery catalog
full resync complete
RMAN configuration parameters for database with db_unique_name LEARNOMATE are:
 
CONFIGURE SNAPSHOT CONTROLFILE NAME TO ‘/data/app/oracle/product/19.0.0.0/dbhome_1/dbs/snapcf_LEARNOMATE2.f’; # default
 
Here you can see that controlfile is on a local file system, so to fix this issue configure it to a shared location.

To Configure the snapshot controlfile to a shared disk

Connect to target database, and issue the following command on RMAN prompt.

1
RMAN> CONFIGURE SNAPSHOT CONTROLFILE NAME TO ‘<shared_disk>/snapcf_<DBNAME>.f’;

Let us take an example,

RMAN> CONFIGURE SNAPSHOT CONTROLFILE NAME TO ‘+RC_DATA/LEARNOMATE/snapcf_orahow.f’;
1
2
3
4
5
6
7
new RMAN configuration parameters:
 
CONFIGURE SNAPSHOT CONTROLFILE NAME TO ‘+RC_DATA/LEARNOMATE/snapcf_learnomate.f’;
 
new RMAN configuration parameters are successfully stored
starting full resync of recovery catalog
full resync complete

new RMAN configuration parameters:

Due to the changes made to the controlfile backup mechanism any instances in the cluster may write to the backup controlfile when making changes to the current controlfile. Therefore, the backup file needs to be visible to all instances.