问题描述:
今天项目在使用的过程中报如下错误:
经过查询得知这是索引失效造成的。
当使用类似 alter table xxxxxx move tablespace xxxxxxx 命令后,索引就会失效。
查看索引状态为UNUSABLE状态:
SELECT
index_name,
index_type,
tablespace_name,
table_type,
status
FROM
user_indexes
WHERE
index_name = 'PK_ITEM_CONSULT';
解决办法:
只需要重建索引即可。
ALTER INDEX INDEX_NAME REBUILD;