确认db_recovery_file_dest 参数指定的目录确实存在于文件系统中。 sql SHOW PARAMETER db_recovery_file_dest; 使用上述 SQL 命令查看当前配置,然后检查文件系统。 检查并设置正确的权限: 确保Oracle 数据库实例(通常是 oracle 用户)有权访问并写入指定的目录。 bash # 假设目录是 /u01/app/oracle/flash_recovery...
ORA-01261: Parameter db_recovery_file_dest destination string cannot be translated ORA-01262: Stat failed on a file destination directory Linux Error: 2: No such file or directory 解决: 查看了Oracle的初始化文件。 $cat /u01/app/oracle/product/11.2.0/dbhome_1/dbs/init.ora 如:db_recovery_fi...
如:db_recovery_file_dest='/oracle/oms/flash_recovery_area' 查看系统/oracle/oms/没有该“flash_recovery_area”文件夹。 用oracle用户在/oracle/oms目录下创建一个“flash_recovery_area”文件夹 $mkdir flash_recovery_area SQL> startup 重新启动数据库就正常了。
ORA-01261: Parameter db_recovery_file_dest destination string cannot be translated ORA-01263: Name given for file destination directory is invalid OSD-04018: ??? O/S-Error: (OS 2) ??? 其实是sPfile文件中一个路径db_recovery_file_dest找不到导致的。于是找到这个 sPfile 文件看看它里面是怎么写的。
ORA-01261: Parameter db_recovery_file_dest destination string cannot be translated ORA-01263:Name given for file destination directory is invalid OSD-04018: ??? O/S-Error: (OS 2) ??? SQL> startup报错ORA-01261&&ORA-01263的意思是:当前数据库开启了闪回...
We have 12c RAC . One after the database is not coming up and giving the below error . I tried to start with srvctl but it failed , so tried to start like the below .. while starting SQL> startup ORA-01261: Parameter db_recovery_file_dest destination string cannot be...
ORA-00119: invalid specification for system parameter LOCAL_LISTENER 2015-03-10 13:39 −错误分析: listener 可以正常启动: [oracle@o_target admin]$ cat listener.ora# listener.ora Network Configuration File: /u01/app/oracle/product/11.2.0/dbhome_1/ne... ...
Oracle Database Configuration Assistant - Version 12.2.0.1 and later: "ORA-01261: Parameter Db_create_online_log_dest_1 Destination String Cannot Be Translated"
ORA-01261: Parameter db_recovery_file_dest destination string cannot be translat查看了Oracle的初始化文件。 $cat /oracle/oms/102_64/dbs/initSID.ora如:db_recovery_file_dest='/oracle/oms/flash_recovery_area'查看系统/oracle/oms/没有该“flash_recovery_area”文件夹。
Action: Use a valid destination string in the specified parameter.产生原因修改了参数db_recovery_file_dest路径不存在导致不能开启数据库 修改Pfile文件,将参数路径修改为存在的路径$ vi /home/ora10g/admin/orcl/init.ora.55201042659 启动数据库SQL>startup pfile='/home/ora10g/admin/orcl/init.ora.552010426...