1、创建表空间
create tablespace test_tbs(表空间名称) datafile 'F:\oradata\orcl\test_tbs.dbf'(文件路径) size 500M autoextend on next 100M maxsize unlimited;
2、表空间下挂文件
4、表空间删除
删除空的表空间,但是不包含物理文件
drop tablespace tablespace_name;
--删除空的表空间,但是不包含物理文件
drop tablespace tablespace_name;
--删除非空表空间,但是不包含物理文件
drop tablespace tablespace_name including contents;
--删除空表空间,包含物理文件
drop tablespace tablespace_name including datafiles;
--删除非空表空间,包含物理文件
drop tablespace tablespace_name including contents and datafiles;
--如果其他表空间中的表有外键等约束关联到了本表空间中的表的字段,就要加上CASCADE CONSTRAINTS
drop tablespace tablespace_name including contents and datafiles CASCADE CONSTRAINTS;
5、导入时变更表空间
impdp system/admin@DNACLIENT directory=DATA_PUMP_DIR dumpfile=example.DMP REMAP_SCHEMA=olduser:newuser remap_tablespace=EXAMPLE:newtablespace,EXAMPLE_TEMP:newtablespace_temp
注:
1、此处directory使用了系统自带的,如果需要自定义,请使用 create directory命令创建;
2、remap_tablespace多个表空间转换用逗号隔开。
完成以上步骤,通过plsql利用newuser登录数据库,可以查看到newuser下的所有导入的表已转入newtablespace表空间了。
6、查询表空间对应文件
select file_name, tablespace_name from dba_data_files where tablespace_name ='TBS_CURVE';