Hi,
It seems that the VST table _StatBase has disappeared in 12.1.
Has this been replaced by something else ?
We used that for setting _indexbase / _TableBase to different value ...
Or is it enough to work with the -tablerangesize / -indexrangesize start-up parameters ?
Kind regards
Gerd
As part of OpenEdge 12.0, ths _StatBase vst table has been removed. Its functionality is replaced by the _DbParams table.
find _dbparams where _dbparame-name = "-basetable".
Update _dbparams-value. (NOTE: this is always a character value so setting it to 100 is: assign _dbparams-value = "100".)
If successful, in the .lg file you will see the following:
(17554) Starting table number for statistics range (-basetable): <n>
The same is supported for index and lobs.
> If successful, in the .lg file you will see the following:
And if update was not successful we will not get an error.
Are there any ways to check the failure other than to re-read the updated value?