摘要:
1. 如果DDL语法正确,即使执行失败,也会导致隐式提交:duzz$scott@orcl>create table t1 as select * from dept;Table created.Elapsed: 00:00:00.03duzz$scott@orcl>update t1 set loc='xx' where deptno=10;1 row updated.Elapsed: 00:00:00.03duzz$scott@orcl>drop table xx;drop table xx *ERROR at line 1:ORA-00942: table 阅读全文
摘要:
关于回滚段的问题,之前也小整理过一个,参考: Current online Redo 和 Undo 损坏的处理方法 http://blog.csdn.net/tianlesoftware/article/details/6261475 Roger同学昨天整理了一个更加详细的说明,转帖过来。 Roger 的原文链接如下: http://www.killdb.com/?p=196 某些情况下,我们需要手动去清除一些有问题的回滚段,如果该回滚段中包含活动事务,那么使用正常的方式将无法drop,所以此时你dropundo tablespace 也将失败。可能就会遇到如下的错误:SQL> drop 阅读全文
摘要:
一. ORA-600[2662] 说明关于ORA-600[2662]的的错误,之前的blog 有说明: ORA-600[2662] "Block SCN is ahead of Current SCN" [ID 28929.1] http://blog.csdn.net/tianlesoftware/article/details/6106130关于ORA-600 的各个参数说明,参考我的blog: ORA-600 各个参数含义说明 http://blog.csdn.net/tianlesoftware/article/details/6645809 简单的说,就是bloc 阅读全文