重庆思庄技术分享——Oracle查询1个月内数据增长情况

Oracle查询1个月内数据增长情况

ORACLE 12C 可使用如下语句查看近一个月内每日数据增长情况:
SELECT a.snap_id,
a.con_id,
e.name pdbname,
c.tablespace_name ts_name,
to_char(to_date(a.rtime, 'mm/dd/yyyy hh24:mi:ss'), 'yyyy-mm-dd hh24:mi') rtime,
round(a.tablespace_size * c.block_size / 1024 / 1024, 2) ts_size_mb,
圆形(a.tablespace_usedsize * c.block_size / 1024 / 1024, 2) ts_used_mb,
圆形((a.tablespace_size - a.tablespace_usedsize) * c.block_size / 1024 / 1024,
2) ts_free_mb,
圆形(a.tablespace_usedsize / a.tablespace_size * 100, 2) pct_used
从 cdb_hist_tbspc_space_usage a,
(选择 tablespace_id,
nb.con_id,
substr(rtime, 1, 10) rtime,
max(snap_id) snap_id
FROM dba_hist_tbspc_space_usage nb
组乘以 tablespace_id, nb.con_id,substr(rtime, 1, 10)) b,
cdb_tablespaces c,
v$tablespace d,
V$CONTAINERS e
其中 a.snap_id = b.snap_id
和 a.tablespace_id = b.tablespace_id
和 a.con_id=b.con_id
和 a.con_id=c.con_id
和 a.con_id=d.con_id
和 a.con_id=e.con_id
和 a.tablespace_id=d.TS#
和 d.NAME=c.tablespace_name
和 to_date(a.rtime, 'mm/dd/yyyy hh24:mi:ss') >=sysdate-30
按 a.CON_ID,a.tablespace_id,to_date(a.rtime, 'mm/dd/yyyy hh24) 排序:mi:ss') 描述;



Oracle 10g 和 11g 可使用如下语句查看近一个月内每日数据增长情况:
SELECT a.snap_id,
c.tablespace_name ts_name,
to_char(to_date(a.rtime, 'mm/dd/yyyy hh24:mi:ss'), 'yyyy-mm-dd hh24:mi') rtime,
圆形(a.tablespace_size * c.block_size / 1024 / 1024, 2) ts_size_mb,
圆形(a.tablespace_usedsize * c.block_size / 1024 / 1024, 2) ts_used_mb,
圆形((a.tablespace_size - a.tablespace_usedsize) * c.block_size / 1024 / 1024,
2) ts_free_mb,
圆形(a.tablespace_usedsize / a.tablespace_size * 100,2 pct_used
) 从dba_hist_tbspc_space_usage a,
(SELECT tablespace_id,
substr(rtime, 1, 10) rtime,
max(snap_id) snap_id
FROM dba_hist_tbspc_space_usage nb
group by tablespace_id,substr(rtime, 1, 10)) b,
dba_tablespaces c,
v$表空间 d</b197&gt;<b198>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值