Kbase P6942: Record counts differ on tabanalys report after conv89
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  16/10/2008 |
|
Status: Unverified
FACT(s) (Environment):
Progress 9.1D
SYMPTOM(s):
Record counts differ on tabanalys reports
Tabanalys shows records missing post migration
Missing records after conv89
Missing records after conv89 according to tabanalys
CHANGE:
Migrated database from Progress 8.3E to 9.1D
CAUSE:
Bug# 20020903-004
CAUSE:
Records were being excluded from the record count when performing a table analysis with proutil
FIX:
Upgrade to Progress 9.1D02 or later
Alternatively, use a 4GL query to validate the record count pre and post migration:
DEF VAR CNT as INT.
FOR EACH table-name no-lock:
CNT = CNT + 1.
END.
DISPLAY CNT.