ORA-01215: enabled thread string is missing after CREATE CONTROLFILE ORACLE 报错 故障修复 远程处理
文档解释
ORA-01215: enabled thread string is missing after CREATE CONTROLFILE
Cause: A CREATE CONTROLFILE statement was given which did not list all the enabled threads for the database.
Action: Reissue the CREATE CONTROLFILE statement, including all enabled threads.
ORA-01215:在CREATE CONTROLFILE语句后缺少启用线程字符串。
官方解释
ORA-01215表示CREATE CONTROLFILE语句中没有指定要启用的数据文件、日志文件或者恢复文件,或者没有指定要启用哪些线程。
常见案例
CREATE CONTROLFILE REUSE
正常处理方法及步骤
需要在CREATE CONTROLFILE语句中使用ENABLE Threads参数,然后指定要启用的数据文件、日志文件和恢复文件。
因此,正确的语句应该是:
CREATE CONTROLFILE REUSE
ENABLE THREADS
datafile
logfile
redo_logfile
;