Upon first installation of the database, the user and all database objects (tables, procedures, etc.) are assigned to the table space that has been set as the default tablespace in the database.
Note
For releases < DB 39.5.18, a schema trigger must be created for Oracle databases prior to installation (<DB USER> is to be replaced by the name of the database user). From DB 39.5.18, a schema trigger is created automatically.
CREATE OR REPLACE TRIGGER ON_LOGON_PLANTA_<DB_USER>
AFTER LOGON ON SCHEMA WHEN ( USER = 'DB_USER')
BEGIN
execute immediate('alter session set nls_date_format="DD.MM.RRRR"');
EXCEPTION
WHEN OTHERS THEN
NULL;
END;