Database Growth
How to find out the exact database growth in Oracle 10G.
I have tried with below query, but i am not getting the exact growth.. Please provide the details to find out the exact database growth
select to_char(creation_time,'RRRR month') "Month" , sum(bytes/1024/1024) "growth in KB" from v$datafile group by to_char(creation_time,'RRRR month');