Consultor Eletrônico



Kbase 16380: What Rdb database error code 0x013881dc mean?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   10/05/1998
What Rdb database error code 0x013881dc mean?


How to decode what the following Rdb error mean?
Rdb database error code -32292 (0x013881dc) (1860).
In general if you receive a Rdb error code; how to go about finding
the full error text.

If you search the Rdb error message header file you will find:
$search RDBMSGS.H 0x13881dc
#define RDB__WRONG_ODS 0x13881dc

Set def to sys$common:[syshlp] to get the full text of the error
message from the RDB_MSG.DOC file.
search rdb_msg.doc wrong_ods

WRONG_ODS, the on-disk structure of database <str> is not
supported by version of facility being used

Explanation: The on-disk structure of the database you referred to
does not match the on-disk structure expected by the
database product (or product version) that you are
using.

User Action: Check secondary messages for the expected and actual
structure versions. You may have to back up and
restore, or convert the database. For more
information, see the maintenance and performance guide
for Rdb, the CONVERT statement entry in Rdb reference
documentation, or the "EBRP" entry in the VAX Rdb/ELN
reference documentation.

There is another Error message file which maybe useful for Rdb/Vms
specific (RDMS facility) messages:
SYS$COMMON:[SYSHLP]RDMS_MSG.DOC


Basically the error means that your Rdb internal database structure is
not the same level as your Rdb software. To convert your Rdb database:

$ rmu/convert your-rdb-database.rdb

Progress Software Technical Support Note # 16380