oracle在删除表\表空间\用户时,如何释放磁
1个回答
展开全部
1、先创建表空间,创建用户时候才能指定默认表空间,用户登陆后创建表时候才能存放在指定的表空间。
CREATE TABLESPACE test_ts1 DATAFILE '/data1/test_ts1.dbf' SIZE 512M AUTOEXTEND ON NEXT 256M MAXSIZE UNLIMITED BLOCKSIZE 8k;
create user test_user identified by 123456 default tablespace test_ts1;
2、查询数据库有哪些表空间
select distinct tablespace_name,file_name from dba_data_files order by tablespace_name;
3、查询表空间包含哪些表。
col SEGMENT_NAME format a30
select distinct SEGMENT_NAME,TABLESPACE_NAME from dba_segments where TABLESPACE_NAME='TEST_TS1' order by SEGMENT_NAME;
4、查询表或表空间的大小
col SEGMENT_NAME format a30;
Select Segment_Name,Sum(bytes)/1024/1024 x From User_Extents Group By Segment_Name order by x;
Select Tablespace_Name,Sum(bytes)/1024/1024 From Dba_Segments Group By Tablespace_Name;
5、表空间会随着表数据的增加而增加,但是不会随着drop table或者move而变小。
drop table t1 purge;
alter table xxx move tablespace xxx;改变table存放的tablespace
6、当表空间里没有数据时,可以用resize缩减表空间:
alter database datafile '/data2/data_201811.dbf' resize 1G;
7、删除表空间以释放空间
DROP TABLESPACE test_ts1 INCLUDING CONTENTS AND DATAFILES;
CREATE TABLESPACE test_ts1 DATAFILE '/data1/test_ts1.dbf' SIZE 512M AUTOEXTEND ON NEXT 256M MAXSIZE UNLIMITED BLOCKSIZE 8k;
create user test_user identified by 123456 default tablespace test_ts1;
2、查询数据库有哪些表空间
select distinct tablespace_name,file_name from dba_data_files order by tablespace_name;
3、查询表空间包含哪些表。
col SEGMENT_NAME format a30
select distinct SEGMENT_NAME,TABLESPACE_NAME from dba_segments where TABLESPACE_NAME='TEST_TS1' order by SEGMENT_NAME;
4、查询表或表空间的大小
col SEGMENT_NAME format a30;
Select Segment_Name,Sum(bytes)/1024/1024 x From User_Extents Group By Segment_Name order by x;
Select Tablespace_Name,Sum(bytes)/1024/1024 From Dba_Segments Group By Tablespace_Name;
5、表空间会随着表数据的增加而增加,但是不会随着drop table或者move而变小。
drop table t1 purge;
alter table xxx move tablespace xxx;改变table存放的tablespace
6、当表空间里没有数据时,可以用resize缩减表空间:
alter database datafile '/data2/data_201811.dbf' resize 1G;
7、删除表空间以释放空间
DROP TABLESPACE test_ts1 INCLUDING CONTENTS AND DATAFILES;
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询