Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: want to know the growth of my oracle database

Re: want to know the growth of my oracle database

From: endrue <endrue81_at_yahoo.com>
Date: 25 Sep 2005 21:51:22 -0700
Message-ID: <1127710281.969633.93670@g47g2000cwa.googlegroups.com>


Maybe U can try this.

select to_char(creation_time, 'RRRR Month') "Month",

    sum(bytes)/1024/1024
"Growth in Meg"

    from sys.v_$datafile
    where creation_time > SYSDATE-365
    group by to_char(creation_time, 'RRRR Month');

Andrew E.K.

chennakeshava_ramesh_at_yahoo.co.in wrote:
> Hi,
>
> I am trying to predict the growth of my database every month. Is there
> any tool or method which I can use to predict the growth.
>
> Wanted to know whether oracle database only maintains any of these
> statistics in the data dictionary.
>
> thanks and regards
> RAMESH.
Received on Sun Sep 25 2005 - 23:51:22 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US