I also posted in the support forum: https://community.emc.com/thread/145047
Hello ECM community. This is my first post. I've looked/searched around and I havn't been able to find anything yet that does exactly what I want to be able to do.
I want to be able to update the attributes of a large number of object, like 100,000, with update dql statements, like the following:
UPDATE custom_object OBJECTS
SET acl_name = 'custom_object_acl'
WHERE FOLDER('/Custom/Directory', DESCEND)
If the query updates too many objects (most of the time over 2000 objects, although once I sucessfully updated 32,000 objects), then the server hangs and the issued dql statement has no effect. I've been using DA's dql editor to perform these changes.
I was wondering if there was something that would:
1. Break the dql command automatically and update objects in batches
~or~
2. Execute the dql command successfully without hanging up the server and possibly give an estimated time to completion.
Basically, I want to be able to input this dql command and have it perform without having to worry about how many objects are being updated. It's fine that the command runs for three days, I just need to know that it is still executing.
Thanks for the help.