What permissions are required when setting up an Oracle Database for Artifactory?

What permissions are required when setting up an Oracle Database for Artifactory?

AuthorFullName__c
Patrick Russell
articleNumber
000002778
FirstPublishedDate
2016-11-21T15:15:53Z
lastModifiedDate
2025-05-15
VersionNumber
9
What Permissions Are Required for an Oracle Database?

Artifactory needs some specific permissions in order to successfully connect to an Oracle database.
Usually it’s easiest to grant full access, the permissions outlined below are the ones the application needs to function:

 

CREATE USER artifactory IDENTIFIED BY password 
DEFAULT TABLESPACE "USERS" 
TEMPORARY TABLESPACE "TEMP";

GRANT "RESOURCE" TO artifactory; 
GRANT "CONNECT" TO artifactory; 
GRANT CREATE SEQUENCE TO artifactory; 
GRANT CREATE SESSION TO artifactory; 
ALTER USER artifactory QUOTA UNLIMITED ON USERS;