Skip to content

Commit

Permalink
updated oracle_table_space.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
HariSekhon committed Oct 17, 2024
1 parent e663415 commit 59b9141
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oracle_table_space.sql
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ WHERE
num_rows > 0
AND
((blocks * 8 / 1024 / 1024) - (num_rows * avg_row_len / 1024 / 1024 / 1024)) /
(blocks * 8 / 1024 / 1024) > 0.2
(blocks * 8 / 1024 / 1024) > 0.2 -- TUNE: currently only showing tables with over 20% free space
AND
owner NOT IN
('SYS', 'SYSTEM', 'SYSAUX', 'RDSADMIN')
Expand Down

0 comments on commit 59b9141

Please sign in to comment.