I need to delete a number of records from a Documentum database. As these are Documentum objects I can't just go into the backend SQL and remove them so trying DQL.
Delete from cbs_speciality where speciality_id = 'zzz'
and I get the error
Error occured during query execution :[DM_QUERY_E_TABLE_NO_ACCESS]error: "The table, xxx.cbs_speciality, is not registered or you do not have access to it."
If I use
Delete from cbs_speciality where speciality_id = 'zzz' ENABLE (ROWBASE)
I get a syntax error
Since XXX is the account we use around the installation I am pretty sure it has access, but how can I delete these items.