Oracle虚拟索引

来源:这里教程网 时间:2026-03-03 17:22:32 作者:

在给表做碎片清理时报ORA-00600错。alter table A  MOVE tablespace TBS_NAME; ALTER TABLE <owner>.<table_name> MOVE tablespace <tbs_name> nologging * ERROR at line 1: ORA-00600: internal error code, arguments: [25027], [4], [0], [], [], [], [], [], [], [], [], [] 经检查表中存在虚拟索引,可以将虚拟索引drop 掉再进行表的MOVE 操作。 参考文档: https://www.cnblogs.com/kerrycode/p/7526970.html#comments

相关推荐