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 PRCR-1001 : Resource does not exist. Show all posts
Showing posts with label PRCR-1001 : Resource does not exist. Show all posts

Friday, February 12, 2021

PRCR-1001 : Resource does not exist

 Error Message:


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

PRCD-1120 : The resource for database KARDB could not be found.

PRCR-1001 : Resource ora.kardb.db does not exist

 

Solution:

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

srvctl add database -db KARDB -o $ORACLE_HOME

srvctl start database -db KARDB

srvctl status database -db KARDB


If you get the same error due to start asm: 

srvctl start asm

PRCR-1001 : Resource ora.asm does not exist

srvctl add asm -p '$ORACLE_HOME/dbs/spfile+ASM.ora'

srvctl start asm

srvctl status asm

ASM is running on ....


In generally init+ASM.ora seems to as follow:

+ASM.__oracle_base='/oracle'
*.asm_diskstring='/dev/sd*'
*.asm_power_limit=1
*.large_pool_size=12M
*.remote_login_passwordfile='EXCLUSIVE'

 


physical standby without duplicate command

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