Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.
Auszug
hiddentrue

Create an Oracle schema for Nuclos manually: create tablespace and set up user and schema with the required grants.

globe with meridians Language: Deutsch · English

hammer and wrench Oracle: create schema

Manually create tablespace, user and schema for Nuclos in Oracle – if you don't use the @create.sql script.

Status
colourPurple
titleHow-to
Status
colourBlue
titleOperations
Status
colourGreen
titleUpdated: Jul 2026
Status
colourGrey
titleapplies to Nuclos 4.2026.x

Panel
bgColor#F4F5F7

On this page

Inhalt
maxLevel2
minLevel2
Info
titlePrefer the script

If available, prefer the @create.sql script – it reliably grants all required privileges. Use the steps below only when working without the script.

a) Create tablespace

Codeblock
languagesql
CREATE TABLESPACE DAT_<tablespacename> DATAFILE '<oracle-tablespace-verzeichnis>/dat_<tablespacename>.ora' SIZE 100M AUTOEXTEND ON NEXT 5M MAXSIZE UNLIMITED;

b) Create user and schema

Codeblock
languagesql
CREATE USER <schemaname> IDENTIFIED BY <passwort> DEFAULT TABLESPACE DAT_<tablespacename> TEMPORARY TABLESPACE TEMP;
GRANT CONNECT TO <schemaname>;
GRANT DBA TO <schemaname>;
GRANT CREATE ANY SEQUENCE TO <schemaname>;
GRANT CREATE ANY VIEW TO <schemaname>;
ALTER USER <schemaname> DEFAULT ROLE ALL;

Related pages

file cabinet Oracle database (DE)


Oracle basics & nuclos.xml.

Open →