免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1212 | 回复: 0
打印 上一主题 下一主题

[数据库] 关于oracle表空间的管理整理 [复制链接]

论坛徽章:
3
CU大牛徽章
日期:2013-03-13 15:29:07CU大牛徽章
日期:2013-03-13 15:29:49CU大牛徽章
日期:2013-03-13 15:30:19
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-01-10 19:22 |只看该作者 |倒序浏览
1、查看表空间使用情况的脚本
select a.tablespace_name,
        curr_size_mb,
        free_size_mb,
        curr_size_mb-free_size_mb used_size_mb
from
(select tablespace_name,
        sum(bytes/1024) free_size_mb
from dba_free_space
group by tablespace_name) a,
(select tablespace_name,
        sum(bytes/1024) curr_size_mb
from dba_data_files
group by tablespace_name) b
where
        a.tablespace_name=b.tablespace_name
/
2、查看各表空间大小
查看
SQL> select tablespace_name,file_id,file_name,ceil(bytes/1048567)||'M' MB from dba_data_files;
TABLESPACE_NAME    FILE_ID FILE_NAME      MB
--------------- ---------- --------------------------------------------- --------------------
USERS    4 /u01/oracle/oradata/ora10g/users01.dbf  26M
SYSAUX    3 /u01/oracle/oradata/ora10g/sysaux01.dbf  241M
UNDOTBS1   2 /u01/oracle/oradata/ora10g/undotbs01.dbf  26M
SYSTEM    1 /u01/oracle/oradata/ora10g/system01.dbf  481M
3、创建表空间
create tablespace mytbs datafile '/u01/oracle/oradata/ora10g/mytbs01.dbf' size 10M;
4、创建用户时可以指定用户使用表空间
create user user6 default  tablespace  xyz identified by user6;
查看 用户的默认的表空间
SQL> select USERNAME,DEFAULT_TABLESPACE from dba_users ;
更改默认的表空间为 xxx
alter database default tablespace xxx;
5、查看表空间状态
select tablespace_name,status from dba_tablespaces;
6、查看数据文件状态
select tablespace_name,file_name,online_status from dba_data_files;
7、表空间扩容(文件自动增长)
alter database datafile '/oracle/mydba.dbf' autoextend on next 10M maxsize 4G;
alter database datafile '/oracle/mydba.dbf' autoextend on next 10M maxsize unlimited;      //不限制最大容量
lter database datafile '/oracle/mydba.dbf' autoextend on;

您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP