0
点赞
收藏
分享

微信扫一扫

基于SSM的图书馆借阅管理系统

开源分享 2023-06-08 阅读 50

– 查询oracle表空间的使用情况
select b.file_id 文件ID,
b.tablespace_name 表空间,
  b.file_name 物理文件名,
  b.bytes/1024/1024 总字节数MB,
  (b.bytes-sum(nvl(a.bytes,0)))/1024/1024 已使用MB,
  sum(nvl(a.bytes,0))/1024/1024 剩余MB,
  sum(nvl(a.bytes,0))/(b.bytes)*100 剩余百分比
  from dba_free_space a,dba_data_files b
  where a.file_id=b.file_id
  group by b.tablespace_name,b.file_name,b.file_id,b.bytes
  order by b.tablespace_name

举报

相关推荐

0 条评论