Sample:
ALTER TYPE hrd_document MODIFY (hrd_team_name (VALUE ASSISTANCE
IS LIST (
'global',
'cnb_emea',
'con_mgt',
'comm_kit',
'policies',
'hr_empl_rels'
)
IS COMPLETE
));
ALTER TYPE hrd_document MODIFY (hrd_team_name (MAPPING TABLE
(
VALUE='global' DISPLAY='Global',
VALUE='cnb_emea' DISPLAY='C&B/EMEA',
VALUE='con_mgt' DISPLAY='Content Management',
VALUE='comm_kit' DISPLAY='Gbl HR Communications',
VALUE='policies' DISPLAY='Gbl Policies',
VALUE='hr_empl_rels' DISPLAY='hrExchange : Employee Relations'
)));
Values in mapping table should be value from value assistance.
Drop:
When you dropped the value assistance for the attribute you should also have dropped the value mapping table
ALTER TYPE your_type
MODIFY (your_attribute (DROP MAPPING TABLE)) PUBLISH
ALTER TYPE your_type
MODIFY (your_attribute (DROP VALUE ASSISTANCE)) PUBLISH
本文详细探讨了数据库中 hr 类型文档的属性修改与删除技术,包括使用 VALUEASSISTANCE 和 MAPPINGTABLE 进行属性值管理和映射,以及如何在属性更改后发布更新。重点介绍了在数据库管理过程中确保一致性与准确性的关键步骤。
233

被折叠的 条评论
为什么被折叠?



