Sample to estimate storage requirements
- Last Updated: February 11, 2026
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
The following example demonstrates how to estimate storage requirements. Consider a database with a single customer table with three fields:
- Cust-num — An integer field that is always three digits
- Name — A character field containing 12–30 characters, with an average of 21 characters
- Start-date — A date field
If the table is indexed on just one field (Name) and you expect to have about 500,000 records in the customer table, the following table lists formulas (and examples) for estimating storage requirements.
| Database component | Size |
|---|---|
| Field storage | = Cust-num +
Name + Start-date
|
| Customer table | =
number of records x field storage x 1.5
|
| Name index | = number of records x (7 + number of fields in index +
index field storage ) x 2
|
These formulas are conservative and often result in a large estimate of your database size.