Quote:
Originally posted by eyalxx
Hi all,
Does anybody know how can get a list of all tables in a database ?
Thanks a lot
Eyal
|
Hi.
If you need to display tables that belongs
to your logical schema only you can use:
FOR EACH _File
WHERE _File-number > 0 AND
_Owner = "PUB" AND
_File-num < 32767 NO-LOCK
BY _File-name:
DISPLAY _File._File-name.
END.
Regards
Bogdan.