ORA-01261: Parameter db_recovery_file_dest destination string cannot be translated
Issue:
ORA-01261: Parameter db_recovery_file_dest destination string cannot be translated
Solution:
sqlplus /nolog
SQL> sqlplus / as sysdba
SQL> create pfile='c:\obiee.ora' from spfile;
open obiee.ora file using text editor.
search for <db_recovery_file_dest> parameter and change to a valid directory.
$sqlplus / as sysdba
SQL> startup pfile="c:\obiee.ora'
SQL> create spfile from pfile;
SQL> shutdown immediate;
SQL> startup;