ORA-00750: database has been previously mounted and dismounted
Cause: The instance has already mounted and dismounted the database, which is only allowed once in its lifetime.
Action: Shut down the database.
ORA-00750错误提示:“数据库已经被挂载过一次并且又被卸载”,它是oracle错误代码之一。
1. 进入sqlplus登录系统。
2. 使用“shutdown abort”命令关闭数据库,强行终止数据库,这种方式会将当前活动会话杀掉。
3. 使用“startup mount”命令将数据库挂载。
4. 验证是否挂载成功,使用“select open_mode from v$database;”命令能看到open_mode为“MOUNTED”。
5. 使用“alter database open”命令将数据库开启即可。
本文标签:ORA-00750 database has been previously mounted and dismounted
原文链接:
版权说明: 本文由作者上传,本站仅提供存储服务,转载请注明原文链接