Kbase P20346: How to list the hidden tables of a Progress database using 4GL?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  10/16/2008 |
|
Status: Verified
GOAL:
How to list the hidden tables of a Progress database using 4GL?
FIX:
The following code lists the names of the hidden tables of a connected database:
FOR EACH dictdb._file WHERE dictdb._file._hidden = TRUE:
DISPLAY dictdb._file._file-name FORMAT "X(30)".
END.