Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Create a database schema in Oracle

...

  1. with the appropriate permissions; name it jwdb (or

...

  1. another preferred name) e.

...

  1. g. 

    Code Block
    languagesql
    CREATE USER jwdb IDENTIFIED BY jwdb;
    GRANT connect, resource TO jwdb;
    GRANT create session TO jwdb;
    GRANT create table TO jwdb;
  2. Download jwdb-oracle.sql

...

  1. and load this SQL file to "jwdb" schema. This will populate all necessary Joget Workflow table

...

  1. structures into "jwdb".
  2. In joget-installation-directory/wflow/, create a new datasource profile file - app_datasource-oracle.properties.
  3. Open to edit joget-installation-directory/wflow/app_datasource-oracle.properties in text editor, and then insert contents as shown in Figure 1 below. You may need to edit the configurations (such as datasource URL, database user/password) according to your environment.
  4. Open to edit joget-installation-directory/wflow/app_datasource.properties in text editor, and change the content to as shown in Figure 2 below. This is to activate the datasource profile named "oracle".
  5. Restart Joget Workflow server.

...

Code Block
langxml
workflowUser=jwdb
workflowPassword=jwdb
workflowDriver=oracle.jdbc.driver.OracleDriver
workflowUrl=jdbc\:oracle\:thin\:@hostname\:1521\:XE

Each profile contains 5 datasources. So, as shown above, each property (such as datasource URL) repeats 5 times.

You may need to change the datasource URL, database user , and database user's password accordingly.

...