Roger,
this is not possible with IFMX. You can't automatically increase
a dbspace (with additional chunks).
Did your dbspace fill during the "create table" phase ?
If this is the case, it has to do with your extent sizes in the
'create table' statements.
You might need to create additional dbspaces (and explicitly
create your tables in these dbspaces) or add further
chunks to your existing dbspace in order to be able to
create all your tables with the appropriate extent sizes.
You might reduce the first extent size of your tables and
therefore create a larger next size, for example:
create table t1
(
f1 int
) extent size 50000 next size 3000;
Here you might use "extent size 3000 next size 50000"
or something like that.
This ensures that you could create all your tables inside
the configured disk space.
Automatically extending dbspaces could be done, but you
have to write your own scripts for this.
The database monitor 'BusyBee' which could be downloaded
from my website (see URL at the end) observes the
filling degree of dbspaces and is able to trigger and external
script which for example might configure additional diskspace
for your databaseserver.
Unfortunately 'BusyBee' is only availabe for UNIX platforms.
I would really recommend that you switch your databaseserver platform to Linux or Unix.
Believe me, this will save you a lot of pain in the future.
Windows is not a real server platform and it will never be
that (in my opinion).
Eric
--
IT-Consulting Herber
WWW:
http://www.herber-consulting.de
Email:
eric@herber-consulting.de
***********************************************
Download the IFMX Database-Monitor for free at:
http://www.herber-consulting.de/BusyBee
***********************************************