Oracle - TableSpace Free
Oracle - TableSpace Free
Administration Tips
MB_USED,
MB_SIZE, ROUND((SUM(TOTAL_MB)-SUM(FREE_MB))/SUM(TOTAL_MB)*100) PCT_FULL, ROUND(SUM(MAX_MB) - (SUM(TOTAL_MB)-SUM(FREE_MB))) MB_FREE, ROUND(SUM(MAX_MB)) MB_MAXSIZE, ROUND((SUM(TOTAL_MB)-SUM(FREE_MB))/SUM(MAX_MB)*100) PCT_UTIL
FROM
(SELECT
UNION
0,
0 87 1 0
25 325 200 25
0 27 1 0
0 1 0 0
PCT_UTIL:
In other words, PCT_FULL shows you what percentage of what you've currently got is being used, whereas PCT_UTIL shows what percentage of the maximum you could possibly *one day* have is being used. Personally, I wouldn't touch autoextend with a barge pole, and I'd be looking to resize or add extra datafiles when the PCT_FULL column is reaching around the 75 - 80% mark.
10/17/2001
Page 1 of 1