新建oraclefile文件
创建临时表空间temp1,temp2
create temporary tablespace temp1
tempfile ‘C:\oraclefile\temp1.dbf’
SIZE 2M
TABLESPACE sroup group1;
create temporary tablespace temp2
tempfile ‘C:\oraclefile\temp2.dbf’
SIZE 2M
TABLESPACE sroup group1;
查询组文件的名
select group_name,tablespace_name
from dba_tablespace_groups
where group_name=‘GROUP1’;
移动dbf文件
alter tablespace temp1
tablespace group group2;
删除临时表空间
drop tablespace temp1
including contents and datafiles;
修改默认临时表空间
–default 默认
alter database default temporary tablespace temp2;
删除temp表空间
drop tablespace temp
including contents and datafiles;–包括内容和数据文件
创建mybigspace
create bigfile tablespace mybigspace
datafile ‘C:\oraclefile\mybigspace.dbf’
SIZE 10M;
创建非标准数据库表空间
show parameter db_16k_cache_size;
alter system set db_16k_cache_size=20M;
show parameter db_16k_cache_size;
创建表空间nonstandard
create tablespace nonstandard
datafile ‘C:\oraclexe\app\oracle\oradata\XE\nonstandard.dbf’
SIZE 5M
blocksize 16k;
撤销表空间(存放修改的数据)
创建
create undo tablespace myundo
datafile ‘C:\oraclefile\myundo.dbf’
SIZE 10M;
临时表空间,大文件表空间,创建撤销表空间,基础表空间
撤销表空间管理
切换表空间
ALTER SYSTEM set undo_tablespace=‘MYUNDO’;
看表空间名
show parameter undo_tablespace;
修改撤销记录的保留时间
alter system set undo_retention=1200;
查看保留时间
show parameter undo_retention;
删除撤销表空间myundo
alter system
set undo_tablespace=‘UNDOTBS1’;
DROP TABLESPACE MYUNDO
INCLUDING contents and datafiles;