Table and Columns Query

superfly18

New Member
Hello:

I was wondering if there was some kind of simple query i can run on Progress, when querying through ODBC to get a list of all of the tables and columns in the database?
 

medu

Member
_file and _field, joined by recid(_file)

afraid you can't get the table recid in SQL, there are view's created just for that in sysprogress schema...

select * from SYSTABLES t, SYSCOLUMNS c where c.tbl = t.tbl
 
Top