Set up an Oracle database for Nuclos: JDBC driver, create schema and user, connection URL (SID vs service name) and nuclos.xml parameters. |
Language: Deutsch · English
How to prepare an Oracle database for Nuclos: JDBC driver, schema/user and connection settings.
On this page |
| Vendor | oracle.com |
|---|---|
| Supported version | version 11 and up |
The Oracle JDBC driver (e.g. |
Create a schema and user in a SQLPLUS console. A step-by-step guide is available at Oracle: create schema (DE).
Drop an existing schema if needed:
DROP USER <schema> CASCADE; |
jdbc:oracle:thin:@<server>:<port>:<instance-name> |
Example: jdbc:oracle:thin:@localhost:1521:oracle
A service name instead of a SID is not directly supported by the installer. Two workarounds:
|
| <adapter> | oracle |
|---|---|
| <connection-url> | jdbc:oracle:thin:@<server>:<port>:<instance-name> |
| <user>, <password> | database user and password |
| <schema> | schema name |
| <tablespace> | tablespace name |
| <tablespace-index> (optional) | separate tablespace for indexes |