Does anybody know how to calculate the exact size that the client quota mechanisim uses to determine if a db is over quota?
I’ve tested and found that if a quota is set at a certain size, sometimes it doesn’t take effect until the db is slightly over the quota size. I’m calculating size as db.size * db.percentused.
For example:
db size is < 15 mb
quota is 15 mb
paste some docs
db size is now 18.5 mb @ 82% = 15.2 mb
paste some more docs
db size is now 18.5 @ 84% = 15.5 mb
paste some more docs
db size is now 18.5 @ 85% = 15.7 mb
attempt to paste more docs but get dialog “unable to write to database because database would exceed it’s disk quota”.
Is it possible to determine the exact size at which the quota will take effect (i.e., 15.7 mb)? Also, shouldn’t the quota really take affect at 15 mb?
Thanks in advance for any insight.