ORA-38474: attribute set may not have attributes of TABLE COLLECTION type.
Cause: An attempt was made to create an attribute with a TABLE COLLECTION type.
Action: Use VARRAYs instead of table collection, if possible.
ORA-38474错误指出,属性集中不能有表集合类型的属性。
尝试添加或删除属性集中的表集合属性时会出现ORA-38474错误。为避免此错误,请确保属性集中不包含表集合类型的属性。
在尝试使用如下代码创建属性集时,Oracle会抛出ORA-38474错误:
create attribute set My_AttrS set (attrib1 number, attrib2 varchar2(55), attrib3 collected table ( object_id number, object_name varchar2(44)) );
1.检查您尝试使用的属性集是否包含表集合类型的属性,如果是,则将其删除。
2.在创建属性集时检查确保它不包含表集合类型的属性。