Criar Tablespaces no Oracle
Primeiro verifique onde está os arquivos dos datafiles:
select name from v$datafile order by name fetch first 5 rows only;
Depois crie primeiro a tablespace:
create tablespace TS_SAPIENS_V47
datafile ‘/oracle/oradata/CDBPRD19/ts_sapiens_v47_01.dbf’
size 5G
autoextend on next 1G
maxsize unlimited;
Depois crie o usuário:
create user PROCESSPRD_VERSAO47 identified by “processprdversao47”
default tablespace TS_PROCESSPRD_V47
temporary tablespace TEMP;