文档解释
ORA-39700: database must be opened with UPGRADE option
Cause: A normal database open was attempted, but the database has not been upgraded to the current server version.
Action: Use the UPGRADE option when opening the database to run catupgrd.sql (for database upgrade), or to run catalog.sql and catproc.sql (after initial database creation).
ORA-39700 错误指示当数据库尝试在 Oracle 数据库中打开或启动时找不到对应的升级信息。
官方解释
Oracle 错误 39700 通常会在尝试在 Oracle 数据库中打开或启动时引发,而这是因为数据库找不到对应的升级信息。也就是说,如果数据库在迁移至新版本时产生更改,而你没有完成更改,就会发生此错误。
常见案例
ORA-39700错误通常发生在用户试图升级到新版本的 Oracle 数据库时,而没有指定 UPGRADE 参数。
一般处理方法及步骤
1. 确保在 ORACLE_HOME 目录中有所有升级文件(如果是 Linux 操作系统,还应确保它们是可执行的)。
2. 必须指定 UPGRADE 参数在 STARTUP 命令中运行数据库,确保在升级正确的情况下更新其内部。
3. 重新启动实例,并继续执行升级。
4. 操作完毕后,可以使用选项 OPEN RESETLOGS 打开数据库。