1. Open GoldMine.
2. Go to menu Tools->SQL Query…
3. Copy/paste the following text into the query window:
Select cast(convert(decimal, size)/(128*1024) as float) as Size_in_GB, Name
from sysfiles
4. Add up all the values in the “Size_in_gb” column to get the total database size, data file plus log file. (below example: 7.63 + 0.28 = 7.91 GB)
Note: Query returns actual physical data stored, additional allocation for growth is not reflected in results.