Oracle 19c 表空间剩余空间查询语句
要查询Oracle 19c中表空间的剩余空间,可以使用以下SQL语句:
SELECT tablespace_name, round((max_bytes - bytes) / 1024 / 1024, 2) as remaining_space_mb
FROM dba_free_space;
这将返回每个表空间的名称和剩余空间(以MB为单位)。
原文地址: https://www.cveoy.top/t/topic/ptv0 著作权归作者所有。请勿转载和采集!