📄 Overview
GermainUX supports Oracle Database as an on-premise relational datastore.
Oracle may be appropriate when:
|
Condition |
|---|
|
Your organization is standardized on Oracle Database. |
|
Oracle administration, backup, security, and high-availability procedures already exist. |
|
A relational datastore is required. |
|
The expected GermainUX ingestion and analytics workload has been validated against Oracle. |
Elasticsearch remains the preferred datastore for most new, high-volume deployments. Review the Datastore Recommendation and Benchmark before selecting Oracle.
⚙️ Supported Capabilities
Oracle Database can provide:
|
Capability |
Benefit |
|---|---|
|
Reliability |
Mature transaction management, backup, recovery, and storage-management capabilities |
|
Scalability |
Supports large datasets and concurrent workloads when correctly sized |
|
Performance |
Provides indexing, caching, partitioning, and query-optimization capabilities |
|
Security |
Supports encryption, auditing, access control, and fine-grained permissions |
|
High availability |
Supports replication and clustered architectures |
|
Enterprise integration |
Aligns with established Oracle administration and operational standards |
The selected Oracle edition and configuration must support the features required by the GermainUX deployment.
📋 Before You Begin
Confirm with Germain Software:
|
Item |
|---|
|
The Oracle Database version supported by your GermainUX release |
|
Required Oracle edition |
|
Required JDBC driver |
|
Character set and national character set |
|
Tablespace requirements |
|
Schema scripts required for the release |
|
Expected daily AA Unit volume |
|
Data-retention requirements |
|
Partitioning and maintenance requirements |
|
Upgrade or migration requirements |
Supported versions may include Oracle 11g, 12c, 18c, and 19c Enterprise Edition, depending on the GermainUX release. Confirm compatibility before installation or upgrade.
📦 Requirements
Prepare:
|
Requirement |
|---|
|
A supported 64-bit operating system |
|
A supported Oracle Database instance |
|
An Oracle service name or pluggable database |
|
SYSDBA access for initial setup |
|
A supported Oracle JDBC driver |
|
Network connectivity from GermainUX Enterprise |
|
Sufficient CPU, memory, SSD storage, and IOPS |
|
Backup and recovery procedures |
|
TLS or approved encrypted database connectivity |
|
The GermainUX Service distribution package |
See:
🗄️ GermainUX Schemas
GermainUX uses two Oracle schemas:
|
Schema |
Purpose |
|---|---|
|
|
Stores GermainUX configuration |
|
|
Stores monitoring, analytical, and aggregated data |
Use separate, strong credentials for each schema.
🔧 Prepare Oracle Database
Before running the GermainUX scripts:
-
Install or identify the supported Oracle Database instance.
-
Create or select the Oracle service or pluggable database.
-
Configure listeners and network access.
-
Prepare the required tablespaces.
-
Confirm character-set compatibility.
-
Configure storage growth and alerting.
-
Configure backups.
-
Confirm connectivity from the GermainUX Enterprise host.
-
Obtain the supported Oracle JDBC driver.
-
Confirm that SYSDBA access is available for initial schema creation.
The default Oracle listener port is commonly:
1521
Use the actual port configured in your environment.
🚀 Initialize the Database
1️⃣ Extract the GermainUX Service Package
Extract the GermainUX Service release package to a directory referenced below as:
$SERVICE_HOME
2️⃣ Review the Release Instructions
Open:
$SERVICE_HOME/install/databases/readme.txt
This file defines the exact scripts and execution order for the installed GermainUX release.
Always follow the instructions supplied with that release.
🔍 3. Locate the Oracle Scripts
The Oracle scripts are located in:
$SERVICE_HOME/install/databases/oracle
✏️ 4. Update the Setup Script
Open:
$SERVICE_HOME/install/databases/oracle/basic-setup.sql
Replace every password placeholder—such as xxxx—with strong, unique credentials for:
APM_CONFIG
APM_DATAMART
Also review:
|
Item |
|---|
|
Tablespace names |
|
Datafile locations |
|
Storage allocation |
|
User quotas |
|
Default and temporary tablespaces |
|
Granted privileges |
Do not store the completed script containing production passwords in source control or an unsecured shared location.
💻 5. Choose a SQL Client
Run the scripts using Oracle SQL Developer or another compatible SQL client.
SQL Developer is recommended because some scripts contain blank lines within INSERT statements that may not execute correctly under the default SQL*Plus behavior.
If SQL*Plus must be used, validate its blank-line and script-processing settings in a non-production environment first.
🔁 6. Run the Scripts in Sequence
Run the scripts in the exact order specified by:
$SERVICE_HOME/install/databases/readme.txt
Use the following accounts:
|
Script pattern |
Execute as |
|---|---|
|
|
|
|
|
|
|
|
|
Do not skip scripts or change their order unless instructed by Germain Software.
🔑 Initial Setup
Run the basic-*.sql scripts as SYSDBA to create:
|
Object |
|---|
|
|
|
|
|
Required tablespaces or storage assignments |
|
Required roles and permissions |
🆔 Configuration Schema
Connect as:
APM_CONFIG
Run all config-*.sql scripts in the documented sequence.
📊 Datamart Schema
Connect as:
APM_DATAMART
Run all datamart-*.sql scripts in the documented sequence.
⚙️ Configure GermainUX Enterprise
Configure GermainUX Enterprise with:
|
Parameter |
|---|
|
Oracle hostname |
|
Listener port |
|
Service name |
|
|
|
|
|
TLS settings |
|
Connection-pool settings |
|
Query and connection timeouts |
|
Supported Oracle JDBC driver |
Use a service name rather than a SID when required by your Oracle architecture.
Place the JDBC driver in the location specified by the GermainUX Enterprise installation guide.
✅ Validate the Setup
Before starting production monitoring:
-
Connect to Oracle using
APM_CONFIG. -
Connect using
APM_DATAMART. -
Confirm that the required tables, indexes, sequences, views, and materialized views exist.
-
Verify that GermainUX Enterprise can connect to both schemas.
-
Start GermainUX Enterprise.
-
Review logs for schema, permission, JDBC, or connection errors.
-
Save and retrieve a GermainUX configuration.
-
Ingest a limited monitoring workload.
-
Confirm that facts are stored in
APM_DATAMART. -
Open representative dashboards and analyses.
-
Validate retention and partition maintenance.
-
Measure ingestion and query performance.
🛠️ Materialized-View Maintenance
The APM_DATAMART schema includes materialized views that refresh periodically.
These jobs normally run without administrator intervention. If aggregated data becomes delayed or incomplete, inspect the Oracle refresh jobs:
SELECT
JOB,
LAST_DATE,
FAILURES,
BROKEN,
WHAT
FROM ALL_JOBS
WHERE WHAT LIKE '%dbms_refresh.refresh%';
Review:
|
Column |
Meaning |
|---|---|
|
|
Oracle job identifier |
|
|
Most recent execution |
|
|
Number of failed executions |
|
|
Whether Oracle marked the job as broken |
|
|
Procedure executed by the job |
Investigate repeated failures before manually changing or restarting a job.
🗄 Partition and Storage Maintenance
Monitor:
|
Area |
|---|
|
Tablespace utilization |
|
Datafile growth |
|
Partition growth |
|
Index growth |
|
Temporary tablespace utilization |
|
Archive-log volume |
|
Materialized-view refreshes |
|
Backup duration |
|
Query performance |
Old partitions must be removed according to the configured GermainUX retention policy. Failure to remove expired partitions can cause the Oracle database to run out of space.
Partition deletion is destructive. Verify the retention period, target table, partition boundaries, and available backup before removing any partition.
See Oracle Database Troubleshooting.
🔒 Backup and Recovery
Back up both schemas:
APM_CONFIG
APM_DATAMART
The backup strategy should cover:
|
Backup Aspect |
|---|
|
Full database backups |
|
Archive logs |
|
Point-in-time recovery |
|
Off-host or protected backup copies |
|
Encryption |
|
Backup retention |
|
Recovery of individual schemas |
|
Periodic restore testing |
The configuration and datamart schemas may require different recovery and retention objectives.
🛡️ Security
Before production use:
|
Security Item |
|---|
|
Use dedicated GermainUX schema accounts. |
|
Replace all example passwords. |
|
Apply least-privilege permissions. |
|
Restrict SYSDBA access. |
|
Encrypt database connections. |
|
Restrict network access by source and destination. |
|
Protect credentials outside source control. |
|
Enable auditing when required. |
|
Define credential-rotation procedures. |
|
Monitor failed authentication attempts. |
Do not use SYS or SYSTEM as the GermainUX runtime account.
✅ Production Checklist
|
Item |
|---|
|
The Oracle version and edition are supported. |
|
The required JDBC driver is installed. |
|
Network connectivity has been validated. |
|
Encrypted connectivity is configured. |
|
Tablespaces have sufficient capacity. |
|
|
|
|
|
Example passwords have been replaced. |
|
Scripts ran in the required sequence. |
|
GermainUX Enterprise connects successfully. |
|
Materialized-view refresh jobs are running. |
|
Partition retention is configured. |
|
Backups are configured. |
|
A restore has been tested. |
|
Capacity and performance monitoring are enabled. |
|
High availability has been validated when required. |
For supported Oracle versions, schema scripts, migration assistance, or production sizing, contact Germain team.
Service: Enterprise
Feature Availability: 2024.1