Salesforce

How much space do I have left for my database to grow?

« Go Back

Information

 
TitleHow much space do I have left for my database to grow?
URL NameP27397
Article Number000149325
EnvironmentProduct: Progress
Product: OpenEdge
Version: 9.x, 10.x, 11.x
OS: All supported platforms
Question/Problem Description
How much space do I have left in an extent?
How to know the amount of data within a last fixed extent?
What is the overall high water mark of my database?
Do I have enough disk space remaining to accommodate my database expansion?
How to use VST's to aid in database space utilization planning?
When will I need to add a new extent?
Steps to Reproduce
Clarifying Information
Error Message
Defect Number
Enhancement Number
Cause
Resolution
With the introduction of Storage Areas in Progress Version 9, the high-water mark for each area must be monitored to ensure that sufficient space is available to extend the database on a per area basis. Disregard for the high-water mark on a per area basis could result in the abnormal shutdown of the database due to inability to extend within an area.

The formula to determine the overall Database high-water mark would be:

Overall High-water Mark = SUM(highwater marks for each storage area excluding 1 and 3)
 
FOR EACH _Areastatus
   WHERE _AREASTATUS-AREANUM >= 6 NO-LOCK:
      DISPLAY _AREASTATUS._AREASTATUS-AREANAME
              _AREASTATUS._AREASTATUS-HIWATER (SUM).
END.

To calculate how much physical space is remaining on disk:
the difference between Total Database blocks and the Overall High-water Mark, is then Total Empty Blocks.

Total Empty Blocks * Database Block Size (bytes) = physical space remaining (bytes)

Comparing this to the O/S size of your database (by conversion of each to the same byte, order of magnitude) and the remaining space left on your system aides forecast planning exercises and prevents databases terminating abnormally.
Workaround
Notes
References to Written Documentation

Reference to Progress Manuals:

Database Administration Guide and Reference:
PART III Reference - Chapter 20, "Virtual System Tables"
Keyword Phrase
Last Modified Date6/28/2019 7:25 AM

Powered by