Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Progress System Tables (Catalog)

Status
Not open for further replies.

Bernie5412

Programmer
Oct 16, 2002
11
0
0
US
Does anyone know where I can find the names of the systems tables Progress uses to keep information like table names, column names, view names etc. Other DBMS have some sort of system catalog, I can't find any reference to anything of this type in any of the Progress documentation I've looked at.

Anyone know about this?
Thanks
Bernie McGuire
 
Try opening the data dictionary. You'll find under "View" the item "Show Hidden Tables" which might help you.

Hope this helps.

Howard.
 
FOR EACH _file
WHERE SUBSTRING( _file._file-name , 1 , 1 ) EQ "_":

DISPLAY _file._file-name FORMAT "X(32)".

FOR EACH _field OF _file :
...
END.
END.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top