【问题标题】:How to change the dimension of the field in the type by DQL?如何通过 DQL 更改类型中字段的维度?
【发布时间】:2013-01-23 17:34:46
【问题描述】:

如何通过DQL改变类型中字段的维度?

create type archik_type(
   archik_id ID,
   archik_number string(10)
)
supertype null
publish
go

如何从 archik_number string(10) 更改为 string(256) ? 可能是“改变类型”对我有帮助吗?

【问题讨论】:

    标签: dql alter documentum documentum6.5


    【解决方案1】:

    同事帮了我

    alter type archik_type( 
    modify archik_number string(256)
    ) 
    publish
    

    【讨论】:

    • 错了。正确答案是:alter type archik_type modify (archik_number string(256) ) publish
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2019-09-18
    • 1970-01-01
    • 2018-06-11
    相关资源
    最近更新 更多