zoukankan      html  css  js  c++  java
  • ORA-01261: Parameter db_recovery_file_dest destination string cannot be translated解决办法

    SQL> startup pfile='/u01/app/oracle/product/11.2.0/dbhome_1/dbs/init.ora'
    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_file_dest=’<ORACLE_BASE>/flash_recovery_area'

    查看系统/u01/app/oracle/没有该“flash_recovery_area”文件夹。

    用oracle用户在/u01/app/oracle目录下创建一个“flash_recovery_area”文件夹
    $mkdir  flash_recovery_area

    SQL> startup

    重新启动数据库就正常了。

  • 相关阅读:
    django的用户认证模块(auth)
    算法
    图书管理系统
    mac系统中pycharm激活
    mac常见问题
    mysql安装
    restful规范及DRF基础
    MySQL存储引擎
    [python] with statement
    MySQL索引及执行计划
  • 原文地址:https://www.cnblogs.com/kevin-boy/p/3238186.html
Copyright © 2011-2022 走看看