Consultor Eletrônico



Kbase P79813: VSTs are not dumped when the database is empty
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   8/9/2004
Status: Unverified

SYMPTOM(s):

VSTs are not dumped when the database does not contain any tables

Dumping VSTs from the Data Administration

Database is empty

Selecting all hidden tables

Virtual System Tables (VST) are not dumped

The resulting .df file does not contain any table definitions

CAUSE:

This is a known issue being investigated by Development

FIX:


Dump the VSTs by calling the dump_df.p procedure.


     DEFINE VARIABLE cFile AS CHARACTER  NO-UNDO.
     DEFINE VARIABLE bFirst AS LOGICAL INIT TRUE NO-UNDO .

     FOR EACH  _file WHERE _file-number < 0 BY _File-name :
         IF bFirst THEN
             DO:
                 cFile =  _File-Name.
                 bFirst = FALSE.
             END.
         ELSE
             cFile = cFile + "," + _File-Name.
     END.

     RUN prodict/dump_df.p (cFile,"test.df","").