表空间常用命令总结

本文总结了Oracle数据库中创建、挂载、删除表空间的关键命令,包括如何在导入数据时变更表空间,并提供了查询表空间对应文件的方法。通过这些操作,可以有效管理数据库的存储资源。
摘要由CSDN通过智能技术生成

1、创建表空间

create tablespace test_tbs(表空间名称) datafile 'F:\oradata\orcl\test_tbs.dbf'(文件路径) size 500M autoextend on next 100M maxsize unlimited;

2、表空间下挂文件

ALTER TABLESPACE test_tbs ADD DATAFILE 'F:\oradata\orcl\ test_tbs--1.DBF' SIZE 1000M AUTOEXTEND ON NEXT 500M MAXSIZE UNLIMITED;
3、查询表空间大小 剩余空间
select a.tablespace_name, total, free, total-free as used from 
(select tablespace_name, sum(bytes)/1024/1024 as total from dba_data_files group by tablespace_name) a, 
(select tablespace_name, sum(bytes)/1024/1024 as free from dba_free_space group by tablespace_name) b
where a.tablespace_name = b.tablespace_name;

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';



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值