如何在不使用唯一修饰符的情况下使用 ImpEx 更新项目类型的所有实例?
How to update all instance of an item type with an ImpEx without using unique modifier?
我需要更新项目类型的所有实例(例如员工),但我不想使用 uid[unique=true]
?
更新每一行
使用修饰符 [batchmode=true]
可以做到这一点。因为您仍然必须包含一个唯一属性,所以您必须设置将被更新的项目。
UPDATE Employee[batchmode=true];itemtype(code)[unique=true];myAttribute
;Employee;""
我需要更新项目类型的所有实例(例如员工),但我不想使用 uid[unique=true]
?
使用修饰符 [batchmode=true]
可以做到这一点。因为您仍然必须包含一个唯一属性,所以您必须设置将被更新的项目。
UPDATE Employee[batchmode=true];itemtype(code)[unique=true];myAttribute
;Employee;""