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

Oracle SQL语句记录

时间:2016-02-18 15:09:46      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

1、oracel 查看表空间使用情况。

SELECT SUM(bytes) / (1024 * 1024) AS free_space, tablespace_name FROM dba_free_space GROUP BY tablespace_name;
SELECT a.tablespace_name, a.bytes total, b.bytes used, c.bytes free, (b.bytes * 100) / a.bytes "% USED ", (c.bytes * 100) / a.bytes "% 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;

Oracle SQL语句记录

标签:

原文地址:http://www.cnblogs.com/llkmst/p/5198215.html

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