ORA-38425: attribute set used for an index object may not be unassigned
Cause: An attempt was made to un-assign an attribute set from an expression set when there is an Expression Filter index defined on the column.
Action: Drop the index before un-assigning the attribute set.
ORA-38425: 属性集用于索引对象时不能取消分配。
官方诠释:该错误指示在尝试取消分配索引对象的属性集时发生了错误,索引不能使用一个未分配的属性集。另外,由于ORA-38425也是表示CREATE INDEX索引或ALTER INDEX REBUILD / REORGANIZE中发生错误的代码,因此这错误也可能指示指定的表空间中没有足够的重构或存放空间。
1.检查表空间是否已满,如果已满,将其删除或重新整理更多空间。
2.使用查询检查表上已建立索引,同时分析索引用于哪些字段以及要求的空间大小。
3.转到“表属性”菜单,选择“索引”,以显示索引的信息,以及更新和删除索引的按钮。
4.如果需要释放更多空间,可以删除多余的索引。
5.打开SQL * Plus,输入查询alter index index_name rebuild tablespace tablespace_name,重建索引以再次获得索引所需的空间。