Consultor Eletrônico



Kbase P18368: How to determine a table by table number?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   05/08/2006
Status: Verified

GOAL:

How can I determine a table name via a table number?

GOAL:

How to identify a table name by a table number?

GOAL:

How to find the file number associated with a table?

FIX:

Code to generate listing of table names and table numbers within a database:

FOR EACH _file:
DISPLAY _file-num _file-name.
END.

To view table information without seeing meta schema tables use this code:

FOR EACH _file where _file-num >0:
DISPLAY _file-num _file-name.
END.