Skip to main content
Version: 3.3

Database Installation

This page provides setup instructions for each supported database management system. For each one, it explains how to:

  • Install the database management system.
  • Create a dedicated database (or schema, depending on the database system) and required database account for USP Manager.
  • Grant the required permissions.
  • (Optional) Verify connectivity to the database using the open-source usql command-line interface.
  • (Optional) Run a query to confirm access.

1. Install Oracle Database

Refer to the Oracle official documentation for installation instructions.

info

Ensure that Oracle Database is installed, running, and reachable from the host where USP Manager is deployed.

2. Create a dedicated user and grant permissions

Run the following commands as an Oracle DBA to create a dedicated user for USP Manager and grant the required permissions:

CREATE USER uspmanageradm IDENTIFIED BY "usp-manager-oracle-password";
GRANT CONNECT, RESOURCE TO uspmanageradm;

3. (Optional) Verify connectivity

Use the usql client to confirm that the uspmanageradm user can connect to the database:

usql godror://uspmanageradm:usp-manager-oracle-password@//host:1521/service

Expected output:

Connected with driver godror
Type "help" for help.

godror:uspmanageradm@host/service=>

4. (Optional) Run a test query

Run a simple query to confirm that the schema is accessible and currently empty:

SELECT table_name FROM user_tables;

Expected output on a new schema:

(0 rows)

This confirms that:

  • Oracle Database is installed and running.
  • Required client libraries are available.
  • The uspmanageradm user exists and can connect.
  • The schema is reachable and currently empty.