Oracle数据库从入门到精通系列之二十五:ORA-01261: Parameter db_recovery_file_dest destination string cannot be transl
一、完整报错
- ORA-01261: Parameter db_recovery_file_dest destination string cannot be translated
- ORA-01262: Stat failed on a file destination directory
- Linux-x86_64 Error: 2: No such file or directory
二、报错原因
- 创建数据库恢复文件,没有提前创建参数db_recovery_file_dest的目录
- 错误报的是目录不存在
三、解决方法
根据需求创建对应的目录
mkdir -p /opt/oracle/oradata/recovery_area
创建目录后,就可以设置数据库恢复文件
SQL> alter system set</