Create the Database Schema on Oracle Database
Create the following database schemas:
- Application Configuration Schema (also known as Configuration or Config Schema)
- Metadata Schema
- Data Schema
- MMG Application Schema
- MMG Studio Schema
- MMG Graph Schema
Tablespace
You can either use the existing Tablespace or can create a new Tablespace during schema creation using the following script:
Permanent Tablespace
CREATE TABLESPACE <tablespace_name >
DATAFILE '<tablespace_name >.dat'
SIZE 1G
ONLINE;
Temporary Tablespace
CREATE TEMPORARY TABLESPACE <tablespace_name >
TEMPFILE '<tablespace_name >.dbf'
SIZE 100M;