Tags

11g (5) 12c (6) 18c (3) 19c (4) ASM (1) Critical Patch (11) Data Pump (1) Dataguard (9) Diverse (3) GRID (7) GitLab (2) Linux (8) OEM (2) ORA Errors (13) Oracle (12) RMAN (4)
Showing posts with label ORA-01078: failure in processing. Show all posts
Showing posts with label ORA-01078: failure in processing. Show all posts

Friday, February 12, 2021

ORA-01078: failure in processing system parameters

 

Error Message:

 ORA-01078: failure in processing


PURPOSE: All documents are provided on this Blog just for educational purposes only.  Please make sure that you run it in your test environment before to move on to production environment. 

srvctl start database -db KARDB

PRCR-1079 : Failed to start resource ora.kardb.db

CRS-5017: The resource action "ora.kardb.db start" encountered the following error:

ORA-01078: failure in processing system parameters

LRM-00109: could not open parameter file '/oracle/product/12.2.0.1/db/dbs/initKARDB.ora'

. For details refer to "(:CLSN00107:)" in "/oracle/diag/crs/vm-kardb-tst/crs/trace/ohasd_oraagent_oracle.trc".

 

CRS-2674: Start of 'ora.kardb.db' on vm-kardb-tst 'vm-kardb-tst' failed

 

Solution:

It is missing detail in the server Control (srvctl) Utility. We need to add as follow.

create spfile from pfile='/oracle/product/12.2.0.1/db/dbs/initKARDB.ora';

srvctl start database -db KARDB

srvctl status database -db KARDB

Database is running.

physical standby without duplicate command

physical standby without duplicate command create a physical standby database using RMAN without using duplicate command PURPOSE:   All docu...