oracle --- temporary table space

--临时表空间
select * from dba_tablespaces where contents like 'TEMP%';

select * from v$tempfile f, v$tablespace t where f.TS# = t.TS# ;

create TEMPORARY tablespace jinlian_temp
tempfile 'C:\APP\ADMINISTRATOR\ORADATA\ORCL\JINLIAN.DBF'
size 10M
EXTENT management LOCAL
UNIFORM size 2M;

Guess you like

Origin www.cnblogs.com/bedfly/p/12615419.html