Create an Oracle schema for Nuclos manually: create tablespace and set up user and schema with the required grants. |
Language: Deutsch ยท English
Manually create tablespace, user and schema for Nuclos in Oracle โ if you don't use the @create.sql script.
On this page |
If available, prefer the |
CREATE TABLESPACE DAT_<tablespacename> DATAFILE '<oracle-tablespace-verzeichnis>/dat_<tablespacename>.ora' SIZE 100M AUTOEXTEND ON NEXT 5M MAXSIZE UNLIMITED; |
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; |