What code lists all TABLES in DB?

Use the hidden table _file for more details of hidden tables select view->show hidden tables for the Data dictionary and have a look around.

Code:
for each _file no-lock where not _file._hidden:
    display _file._file-name.
end.

taylormade said:
In 4 GL.
What code will list in text form, all TABLES in my DB?
 
Back
Top