A tablespace TEMP / TMP / TEMPORARY (ou seja lá como definiram), quando criada em seu padrão, ela vai crescer infinitamente (até que acabe o espaço em disco)
Se for até a versão 8i do Oracle, basta coloca-la offline e depois em online
alter tablespace temp offline;
alter tablespace temp online;
Caso seja 9i ou superior, o melhor a fazer é
CREATE TEMPORARY TABLESPACE TEMPORARIA TEMPFILE '/oradata/banco/db/temporaria.dbf'
SIZE 100M AUTOEXTEND ON NEXT 50M MAXSIZE 2000M EXTENT MANAGEMENT LOCAL UNIFORM SIZE 1M;
ALTER DATABASE DEFAULT TEMPORARY TABLESPACE TEMPORARIA;
Isto irá criar uma nova tablespace temporária e você poderá remover a anterior, esta tablespace também irá iniciar com 100MB e poderá crescer até 2 GB, não mais do que isso…
Só que, antes de fazer isso, seria interessante verificar se os teus processos não necessitam desse tamanho de área temporária, pois eles poderão abortar caso estoure a tablespace.