How can I tell how much space is free on tablespace?
How can I tell how much space is free on tablespace? This query will show you what’s there and how much space are free to use. SELECT df. tablespace_name “Tablespace”, totalusedspace “Used MB”, (df. totalspace – tu. totalusedspace) “Free MB”, df. totalspace “Total MB”, ROUND(100 * ( (df. totalspace – Read more…