SQL> select count(*) from t_uden;
select count(*) from t_uden
ORA-00600: 内部错误代码, 参数: [25027], [1], [8942697], [], [], [], [], []
select * from t_uden 就没问题,能够查询数据,count就不行了。求解
连接到:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
SQL> set autotrace traceonly
SQL> select count(*) from t_uden;
select count(*) from t_uden *
第 1 行出现错误:
ORA-00600: 内部错误代码, 参数: [25027], [1], [8942697], [], [], [], [], []
不能用哦,
对了为什么你那语句加了/* full(t) */ 总数相差那么多,一个统计表45682行,一个统计却是3223行
难道是统计了索引数量吗?那我怎么知道到底这条数据有多少行呢?
能不能把那表的数据exp导出来,再导进去? |