• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Determining the file Size.

 
Ranch Hand
Posts: 1228
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi friends,

We have developed some web based application that uses 10g DB as well as OAS 10g. I need to tell the System admin & the operations guys about the size required by the database & the OAS like size of file systems & disk space ..
How can i estimate it ?
Tell me any possible way .....
 
author & internet detective
Posts: 42173
937
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Srini,
For the database side, you need to figure out how much data you will have. Also, add to that for indexes and caching.

For the application server side, you need to figure out how big an ear file will be and how many you want to keep around. If you use files or deployments scripts add those in. You will also want extra memory there.

For both, add to whatever you think you'll need. This kind of thing always uses more memory than expected.
 
Srinivasa Raghavan
Ranch Hand
Posts: 1228
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Jeanne Boyarsky:

For the database side, you need to figure out how much data you will have. Also, add to that for indexes and caching.



Thanks Jeanne
For the DB side Is it enough to calculate the data files size , redo logs , index files & archive file system's size .
 
Jeanne Boyarsky
author & internet detective
Posts: 42173
937
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Srini,
That's a good list. You have a few that I left out.

I would add to that space for storing execution plans and general space for processing (everything takes memory.)
 
Srinivasa Raghavan
Ranch Hand
Posts: 1228
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Jeanne .
Also i'm waiting for you comments/guidance here
https://coderanch.com/t/80556/Oracle-OAS/definitions-Key-terms-Oracle-AS

If possible help me ..
Thanks
 
If you try to please everybody, your progress is limited by the noisiest fool. And this tiny ad:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic