Kbase P8588: How to tell which user created a 4GL table in a Progress 9.x database.
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  26/04/2007 |
|
Status: Verified
GOAL:
How to tell which user created a 4GL table in a Progress 9.x database.
GOAL:
Can I determine who created a specific 4GL table in a Progress 9.x database?
FACT(s) (Environment):
UNIX
Windows
Progress 9.x
If a 4GL table is created using the Progress Data Dictionary, there is no way to tell which user created the table. However, if a table is created using the SQL CREATE TABLE statement (via the Progress Procedure Editor), this information can be obtained from the _creator field of the _file metadata table.
Example:
FOR EACH _file:
DISPLAY _Creator.
END.