DBAsupport.com Forums - Powered by vBulletin
Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Thread: Size of Database

  1. #1
    Join Date
    Dec 2007
    Location
    Buenos Aires - Argentina
    Posts
    31

    Size of Database

    Hi,

    I need know how i can know the growing cronology of the database since his creation. Exist any way?? any views???

    Thanks

    Javier

  2. #2
    Join Date
    Sep 2002
    Location
    England
    Posts
    7,334
    what on earth is a 'growing cronology' ?

  3. #3
    Join Date
    Dec 2007
    Location
    Buenos Aires - Argentina
    Posts
    31
    yes, i need know the size of growing mounth for mounth. How was growing since the creation.

  4. #4
    Join Date
    Sep 2002
    Location
    England
    Posts
    7,334
    you wont know unless you have been monitoring it yourself - you also dont mention version

  5. #5
    Join Date
    Dec 2007
    Location
    Buenos Aires - Argentina
    Posts
    31
    The version is 10G

  6. #6
    Join Date
    Dec 2007
    Location
    Buenos Aires - Argentina
    Posts
    31
    the repository is configured in 7 days.

  7. #7
    Join Date
    Nov 2002
    Location
    Mooresville, NC
    Posts
    349
    select sum(bytes)/(1024*1024*1024) "size in GB" from dba_data_files
    for total DB size

    select sum(bytes)/(1024*1024*1024) "size in GB" from dba_segments
    for used size.
    http://www.perf-engg.com
    A performance engineering forum

  8. #8
    Join Date
    Sep 2002
    Location
    England
    Posts
    7,334
    Quote Originally Posted by malay_biswal
    select sum(bytes)/(1024*1024*1024) "size in GB" from dba_data_files
    for total DB size

    select sum(bytes)/(1024*1024*1024) "size in GB" from dba_segments
    for used size.
    and how does that in any way answer his question about the growth of the database since creation?

  9. #9
    Join Date
    Dec 2007
    Location
    Buenos Aires - Argentina
    Posts
    31
    yes, for example, which was the size in November, December, January, etc.
    Exist any views with this information?? How was growing since November for example, months by months.

  10. #10
    Join Date
    Dec 2007
    Posts
    55
    As said by davey you need to monitor it every month in future by running the query provided by malay.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width