On Tue, 09 May 2000 15:57:42 BST, Reda Bouarich wrote:
>
> Hello all,
> I would like to know if it is posssible (using LDIF for instance) to modify
> an attribute "multivalued" value.
> Example:
>
> the attribute X is multivalued
> X = A
> = B
> = C
> and i would like to modify that to
> X = A
> = B
> = D
>
>
> Thank you.
> regards,
> Reda Bouatrich
> Compaq France
>
>
LDAP permits you to remove individual values of an attribute (remove by
value) as well as removing an entire attribute.
So yes, you should be able to do this. Something like the following
LDIF fragment should work.
dn: cn=Ty Coon,o=Yoyodyne Corp,c=US
changetype: modify
add: X
X: D
-
delete: X
X: C
Cheers,
Chris
|