Oracle表空间管理

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle表空间管理相关的知识,希望对你有一定的参考价值。

1.创建表空间

create tablespace yyy
datafile /u01/oracle/oradata/orcl/yyy01.dbf
size 50m
autoextend on
next 50m maxsize unlimited
extent management local

2. 创建用户

create user yyy identified by yyy
default tablespace yyy
temporary tablespace temp
profile DEFAULT

3.用户授权

-- Grant/Revoke object privileges
grant select on SYS.V_$SESSION to yyy;
grant select on SYS.V_$SESSTAT to yyy;
grant select on SYS.V_$STATNAME to yyy;
-- Grant/Revoke role privileges
grant connect to yyy;
grant resource to yyy;
-- Grant/Revoke system privileges
grant create view to yyy;
grant debug connect session to yyy;
grant unlimited tablespace to yyy;

4.查询表空间的大小

SELECT t.tablespace_name, round(SUM(bytes / (1024 * 1024)), 0) ts_size
FROM dba_tablespaces t, dba_data_files d
WHERE t.tablespace_name = d.tablespace_name
GROUP BY t.tablespace_name;

5.查看表空间对应的数据文件id和数据文件名称

SELECT tablespace_name,
file_id,
file_name,
round(bytes / (1024 * 1024), 0) total_space
FROM dba_data_files
ORDER BY tablespace_name;

6.查看表空间的使用情况

SELECT a.tablespace_name,
a.bytes/1024/1024 "total/m",
b.bytes/1024/1024 "used/m",
c.bytes/1024/1024 "free/m",
Round((c.bytes * 100)/a.bytes,2) " FREE %"
FROM sys.sm$ts_avail a, sys.sm$ts_used b, sys.sm$ts_free c
WHERE a.tablespace_name = b.tablespace_name
AND a.tablespace_name = c.tablespace_name;

7.更改表空间大小(dbf)

alter database datafile 数据文件路径 resize 大小;

8.删除表空间及关联关系

DROP TABLESPACE tablesapce_name including contents and datafiles cascade constraint;

 

以上是关于Oracle表空间管理的主要内容,如果未能解决你的问题,请参考以下文章

oracle asm管理下怎样增加表空间容量

Oracle表空间管理

Oracle-表空间管理

请教如何利用PLSQL建oracle表,建表空间,设置管理,导入导出数据?

Oracle数据库的表空间基本管理

Oracle tablespace 表空间创建和管理