Systemtables

marco

New Member
Hallo,
I have a question. What is the name form the system tables in Progress? I will connect progress with ODBC and I need the names form all tables in the database with using SQL.

Thanks Marco.
 
You can get a complete list of Table names on a database by looking at the _File-name field of the _File table.
The system tables are identified as having an _File-number less than 0 or greater than 32000
 
You want to look at the _Field table. It is one of the system tables you should have seen when querying on _File.

FOR EACH _File,
EACH _Field OF _File.......
 
Back
Top