PRCR-1001 Resource does not exist while recreating password during cloning database.
How to fix PRCR-1001 Resource does not exist.

Error:-
[[email protected]]$ orapwd file=’+DATANC1/DBQCC/orapwdbqcc’ asm=y force=y entries=12 format=12
Enter password for SYS:
KGFCHECK kgfnStmtExecute01c: (ret == OCI_SUCCESS): FAILED at kgfn.c:3698
[[email protected] .rman]$ srvctl modify database -db DBQCC -pwfile ‘+DATANC1/DBQCC/orapwdbqcc’
PRCD-1120 The resource for database DBQCC could not be found.
PRCR-1001 : Resource ora.dbqcc.db does not exist
Solution: –
To add CDB using srvctl.
$srvctl add database -db DBQCC -o $ORACLE_HOME
To start database
$srvctl start database -db DBQCC
To check status
$srvctl status database -db DBQCC
[[email protected] ~]$ srvctl add database -db DBQCC -o $ORACLE_HOME
[[email protected] ~]$ srvctl status database -db DBQCC
Database is not running.
Recreate the password after add database using srvctl.
[[email protected] ~]$ orapwd file=’+DATANC1/DBQCC/orapwdbqcc’ asm=y force=y entries=12 format=12
Enter password for SYS:
[[email protected] ~]$ srvctl modify database -db DBQCC -pwfile ‘+DATANC1/DBQCC/orapwdbqcc’
[[email protected] ~]$
After add database using srvctl, we are able to create password file.
Related Post :-
How to Create Oracle Wallet to Secure External Password Store