码迷,mamicode.com
首页 > 数据库 > 详细

[oracle]常用SQL汇总

时间:2017-12-27 15:40:02      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:临时表空间   free   ted   acl   空间   常用sql   表名   efault   nbsp   

创建用户

create user 用户名 identified by 密码 default tablespace 默认表空间 temporary tablespace 临时表空间;

查看表空间大小

select tablespace_name, sum(bytes)/1024/1024 from dba_data_files group by tablespace_name;

查看表空间及利用率

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;

查看临时表空间及利用率

select tablespace_name, tablespace_size/1024/1024 as total, allocated_space/1024/1024 as used, free_space/1024/1024 as free  from dba_temp_free_space;

查看临时表空间信息

select * from dba_temp_files;

查看某表的索引信息

select * from user_indexes where table_name = ‘表名‘

查看表的列信息

select * from user_tab_columns where table_name=‘表名‘

 

[oracle]常用SQL汇总

标签:临时表空间   free   ted   acl   空间   常用sql   表名   efault   nbsp   

原文地址:https://www.cnblogs.com/wendelhuang/p/8125612.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!