I have a client who has a Novell eDirectory where about 7000 groupwise accounts have become corrupted. Using the normal management (ConsoleOne) it will not let him delete and re-create the groupwise accounts. They have determined that there are 7 attributes of each account that are still populated with groupwise information even though their groupwise account is corrupted. They need to be able to mass delete those 7 attributes while leaving the rest of the properties and the eDirectory account intact. Can your LDAP admin tool standard edition do that for them.
Yes, you can mass delete attribute with LDAP ADmin Tool.
To delete an attribute you set them to null using sql statement.
e.g.
update ou=MemberGroupB,o=stooges set carLicense=null
The above statement will find all the entries under the ou=MemberGroupB,o=stooges and will update their carlicense value to null or in other word it will delete the attribute.