Kbase P20748: ERROR - Unable to get _file record for table number lookup (
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  3/11/2003 |
|
Status: Unverified
FACT(s) (Environment):
Progress 9.X
SYMPTOM(s):
** Field <field> does not exist in table <table>. (442)
Field Item-no does not exist in table poreq-line. (442)
Field Item-no is present and visible via Data Dictionary
ERROR - Unable to get _file record for table number lookup (8789)
Unable to perform binary dump
Binary dump fails with 8789 error
Unable to perform ascii dump using Data Administrator utility
Data Administrator dump fails with 442 error
CAUSE:
Database has a metaschema corruption
FIX:
Perform an ascii dump (and load data to brand new database then) using following code:
DEFINE TEMP-TABLE tt LIKE db.tablename NO-UNDO.
CREATE tt.
FOR EACH db.tablename NO-LOCK:
BUFFER-COPY db.tablename TO tt.
/* do whatever you want with tt record */
END.
DELETE tt.