ERROR at line 1:
ORA-00600: internal error code, arguments: [6002], [0], [227], [2], [0], [], [], []
则可能是表或表上的索引数据有坏块或者表或表的索引结构存在问题
SQL> ANALYZE TABLE <表名> VALIDATE STRUCTURE CASCADE;
ORA-01499: table/index cross reference failure - see trace file
已经基本可以确定问题在表结构及其索引
SQL> alter TABLE <表名> move;
SQL> alter index <索引名> REBUILD;