首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 企业软件 > 行业软件 >

Documentum/DQL: alter type to add/drop an attribute's value assistance etc

2012-07-26 
Documentum/DQL: alter type to add/drop an attributes value assistance etc.Sample:ALTER TYPE hrd_do

Documentum/DQL: alter type to add/drop an attribute's value assistance etc.

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_typeMODIFY (your_attribute (DROP MAPPING TABLE)) PUBLISH

ALTER TYPE your_typeMODIFY (your_attribute (DROP VALUE ASSISTANCE)) PUBLISH

热点排行