Database MetaSchema

:scan:V9.1C
Before I start the arduous task of trying to represent the Progress MetaSchema on an ERWin diagram, can anyone

1. Supply one that they've already done
or
2. Supply a method of generating the .df file with the meta-schema so I can reverse engineer it?
 
Solved 2 above as below, but would still greatly appreciate anyone who can supply an ERWin diagram with links

Code:
DEF VAR cList AS CHAR NO-UNDO.
FOR EACH _File NO-LOCK
  WHERE _File-Number LT 0:
  ASSIGN cList = cList + "," + _File-Name.
END.
ASSIGN cList = SUBSTR(cList,2).
RUN prodict/dump_df.p (cList,"schema.df","").
 
Top