Table Name from Table Number

Dear Friends,

Is it possible to get table name from table number. I tried reports under data admin option but it doesnt show table number.

Progress 91e on RHL 5.

TIA

Kishor.
 

Rob Fitzpatrick

ProgressTalk.com Sponsor
Code:
define variable tbl as integer no-undo.

update tbl label "Tbl #".

find _file no-lock where _file._file-number = tbl no-error.

if available( _file ) then
  display _file._file-name.
else
  display "Table not found".

Or, the quick 'n dirty version:
Code:
find _file no-lock where _file._file-number = 7. /* change this number */
display _file._file-name.
 
Top