|
报错现象:C:\Users\Administrator.LOB>sqlplus / as sysdba
SQL*Plus: Release 11.2.0.4.0 Production on 星期四 12月 26 11:36:50 2019
Copyright (c) 1982, 2013, Oracle. All rights reserved.
已连接到空闲例程。
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找不到导致的。
*.audit_file_dest='D:\app\Administrator\admin\orcl\adump:'
*.audit_trail='db'
*.compatible='11.2.0.4.0'
*.db_block_size=8192
*.db_create_file_dest=''D:\app\Administrator\oratata\orcl\control01.ctl'
*.db_domain=''
*.db_name='orcl'
*.diagnostic_dest='D:\app\Administrator'
*.db_recovery_file_dest='D:\flash_recovery_area'
*.dispatchers='(PROTOCOL=TCP) (SERVICE=orclXDB)'
*.memory_target=1298137088
*.open_cursors=300
*.processes=150
*.remote_login_passwordfile='EXCLUSIVE'
*.undo_tablespace='UNDOTBS1'
指定目录没有找到,所以新建了一个flash_recovery_area文件夹后再启动数据库实例就没问题了。
SQL> startup
ORACLE 例程已经启动。
|
|