I am using documentum and I want to remove few acls from my dm_acl object table . first I made sure that the acl exists :
select * from dm_acl where object_name = 'myAclName'
then I made sure that no other object is using that acl
select * from dm_folder where acl_name = 'myAclName'
and then I used the following to delete that acl :
delete dm_acl objects where object_name = 'myAclName'
But then I receive an error saying that you have specified a none updatable type (dm_acl)
. Is there any way that I can delete an acl using either DQL
or DFC