Skip to content

Installation

We do recommend installing APEX Document Management in separate database schema.

Before you begin, ensure that your schema has the following additional grants:

grant execute on dbms_crypto to your_user;
grant create any context to your_user;
grant create job to your_user;

Run install.sql

Create your first admin user:

declare
l_role_id number;
begin
adm_context_api.system_login;
select role_id
into l_role_id
from adm_roles
where role_name = 'ADMIN';
adm_user_api.add_user('USERNAME', l_role_id);
commit;
end;
/