Hi,
I am working with Oracle RDBMS 12c.
I have a user that has the connect, resource, XDBADMIN, and execute on dbms_xdb.
I get the following error when I execute the code below:
declare
v_return boolean;
begin
v_return := dbms_xdb.createfolder('/images/');
commit;
end;
/
ERROR at line 1:
ORA-31050: Access denied
ORA-06512: at line 19
I get no error as SYSDBA?
Does someone know if there is a missing credential?
Kind Regards