...
- Login as a user with role DBA on to the Oracle instance that you have set up for the GoCompliant ToolSuite.
- Execute the following SQL script:
01_create_users.sql
This creates the users "goco" and "quartz" and some grants. Leave the passworts as provided for the moment until the initial installation is performed and verified. After that, you can change the passwords as described in Wie kann ich das Datenbank-Passwort ändern?
The user "goco" receives grants für CREATE TABLE/VIEW. In doing so, you enable the software to upgrade the database structure automatically on update-releases. - The following script create an initial 500MB tablespace for users "goco" and "quartz":
02_example_create_tablespaces.sql
This script is intended as an example and should be adjusted by you. The space requirements of the GoCompliant ToolSuite is mostly determined by the attachments that will be uploaded by the users (Limit is 20MB per Datei), and therefore depends on your user requirements. As a rough guide we can say that a middle-sized installation (<100 Benutzer) should be running fine with 1-3 GB for a few years. - The following script creates helper tables for quartz, used by the nightly job scheduling:
03_create_quartz_tables.sql
Anlegen von GoCompliant Tabellen-Struktur, Initialdaten und vorbereiteten Inhalten
Creation of GoCompliant table scructure and initial data
Download the following scripts (right click Laden Sie die folgenden Scripts herunter (Rechtsklick → Save Link As...) , die wir Ihnen in der Download-Area bereitgestellt haben, und führen Sie sie aus. Sie können die Scripts sowohl mit einer DBA-Rolle als auch unter dem Benutzer "goco" ausführen. Die Scripts sind that we have provided in the download area, and execute them. You can execute the scripts either with a DBA role user or as user "goco". The scripts are UTF-8 encoded, um deutsche/französische/italienische Umlaute/Sonderzeichen korrekt zu behandeln. Stellen Sie vor Ausführung des Scripts 05in order to treat German/French/Italian special characters correctly. Make sure that the DB server and client are using UTF-8 encoding before executing the script 05_goco_insert_init_data.sql sicher, dass das UTF-8 Encoding auch bei Ihnen auf dem DB-Server und dem DB-Client eingestellt ist (kurze Überprüfung einiger Umlaute im Script reicht).
- 04_goco_create_tables.sql
- 05_goco_insert_init_data.sql
- 06_goco_insert_customer_data.sql
...
Optionally:
...
Replacing the "initialuser"
...
user
Usually we provide some initially preconfigured users (corresponding to your windows user ids) via script 06Im Normalfall liefern wir Ihnen im Script 06_goco_insert_customer_data.sql schon initial einige vorkonfigierte Benutzer mit, deren Benutzer-IDs auf ihre Windows Benutzer-IDs passen, sodass Sie sich sofort mit , so you will be able to access the application via Active Directory Single Sign-On via Active Directory einloggen können. Falls dies nicht der Fall ist (wird in der Auslieferungs-Mail explizit erwähnt), müssen Sie die "initialuser" Benutzer-ID mit Ihrer Windows Benutzer-ID ersetzen. Ersetzen Sie im folgenden Script . If this is not the case (we will mention it in the delivery mail), you need to replace the "initialuser" User ID with your Windows User ID. Replace in the following script YOUR_WINDOWS_USER_ID mit Ihrer Windows Benutzer-ID und führen Sie es dann auswith your User ID and execute it:
update goco.co_employee set user_id = 'YOUR_WINDOWS_USER_ID' where user_id = 'initialuser';
commit;
...