oracle---临时表空间

--临时表空间
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;

--默认临时表空间
select * from database_properties where property_name like ‘DEFAULT%‘;

--更改临时表空间
alter database default TEMPORARY TABLESPACE jinlian_temp;
alter database default TEMPORARY TABLESPACE TEMP;

--设置表空间为脱机
alter tablespace jinlian_temp OFFLINE;

--设置只读
alter tablespace jinlian_temp read only;--WRITE

oracle---临时表空间

上一篇:MySQL数据库数据类型与操作


下一篇:Mysql:Internal Temporary Table:【不可直接控制】的【内部】临时表:不要blob、不要text、不要太长>512的(二进制)字符串列!