admin 管理员组文章数量: 887021
oracle提示错误1033,ora
系统是winxp,使用Imp导入数据到用户user1的时候,关闭了cmd窗口,结果在删除user1的时候,出现了ora-1033错误。
解决办法:
>connect /as sysdba
>shutdown
>startup mount
>alter database recover database until cancel;
if the above command fails try
>recover database using backup controlfile until cancel;"
on success type
>ALTER DATABASE OPEN RESETLOGS;
stop and restart oracle service
open resetlogs:
摘自Oracle官方文档,供参考:
1。Archives the current online redo logs (if they are accessible) and then erases the contents of the online redo logs and resets the log sequence number to 1. For example, if the current online redo logs are sequence 1000 and 1001 when you open RESETLOGS, then the database archives logs 1000 and 1001 and then resets the online logs to sequence 1 and 2.
2。Creates the online redo log files if they do not currently exist.
3。Reinitializes the control file metadata about online redo logs and redo threads.
4。Updates all current datafiles and online redo logs and all subsequent archived redo logs with a new RESETLOGS SCN and time stamp.
联机日志损坏,不能做完整修复时,用的。
相当于把所有的联机日志重新“格式化”。
这是会丢失数据的。
本文标签: oracle提示错误1033 ORA
版权声明:本文标题:oracle提示错误1033,ora 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1688387929h213923.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论