Skip to content

Commit b65b0af

Browse files
committed
updated oracle_tablespace_space.sql
1 parent c322b0e commit b65b0af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

oracle_tablespace_space.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ SELECT
2121
df.tablespace_name "Tablespace",
2222
df.bytes / (1024 * 1024 * 1024) "Size (GB)",
2323
(df.bytes - SUM(fs.bytes)) / (1024 * 1024 * 1024) "Used Space (GB)",
24-
SUM(fs.bytes) / (1024 * 1024 * 1024) "Free Space (GB)",
24+
ROUND(SUM(fs.bytes) / (1024 * 1024 * 1024), 2) "Free Space (GB)",
2525
ROUND(SUM(fs.bytes) / df.bytes * 100, 2) "Free Space %"
2626
FROM
2727
dba_free_space fs,

0 commit comments

Comments
 (0)