龙空技术网

ORACLE 表空间查询sql

Onceagain75783189 140

前言:

目前你们对“查看oracle数据库空间”大致比较关注,我们都需要学习一些“查看oracle数据库空间”的相关知识。那么小编同时在网络上汇集了一些关于“查看oracle数据库空间””的相关文章,希望小伙伴们能喜欢,看官们快快来学习一下吧!

SELECT created, log_mode, log_mode FROM v$database;

--1G=1024MB

--1M=1024KB

--1K=1024Bytes

--1M=11048576Bytes

--1G=1024*11048576Bytes=11313741824Bytes

SELECT a.tablespace_name "表空间名",

total "表空间大小",

free "表空间剩余大小",

(total - free) "表空间使用大小",

total / (1024 * 1024 * 1024) "表空间大小(G)",

free / (1024 * 1024 * 1024) "表空间剩余大小(G)",

(total - free) / (1024 * 1024 * 1024) "表空间使用大小(G)",

round((total - free) / total, 4) * 100 "使用率 %"

FROM (SELECT tablespace_name, SUM(bytes) free

FROM dba_free_space

GROUP BY tablespace_name) a,

(SELECT tablespace_name, SUM(bytes) total

FROM dba_data_files

GROUP BY tablespace_name) b

WHERE a.tablespace_name = b.tablespace_name

标签: #查看oracle数据库空间