The CONV910 utility in OpenEdge
10.2A02, 10.1B or later has been reworked to include the initial
_Db-Option records necessary.
Since the database has already been converted populate the
_Db-Option table with initial record data:
1. Create a simple dummy database of
the same version as the current database, then enable auditing.
As long as the areas listed are Type II Storage Areas, it doesn't matter which areas are used for this dummy database
$ proutil dummy -C enableauditing area Audit_Data indexarea Audit_Index
2. Dump the Database Options data from the dummy audit enabled database (_db-option.d)
Admin > Dump Data and definitions > Database Options
3. Delete the dummy database
4. Load the _db-option table data into the current database
5. After the data are loaded, all the initial _db-option records are pre-defined except field
_db-option._db-recid must match the record id of the _db record of the current database. This will need to be created with the following ABL:
FIND FIRST _db.
FOR EACH _db-option.
ASSIGN _db-option._db-recid = RECID(_db).
END.