I need to delete the first top 100 objects from a dm_document table.
I already tried:
DELETE dm_document objects where object_name='TestObject' enable (RETURN_TOP 100);
DELETE dm_document objects where r_object_id in (select r_object_id from dm_document where object_name='TestObject' enable (RETURN_TOP 100));
But both did not work. Do you have any tips/ideas?