DIAGRAM Table

The DIAGRAM table includes information about all the diagrams in a model. The following table describes the columns in the DIAGRAM table:

Column Name

Data Type

Description

ID@

INTEGER

ID of the diagram.

Entire_MF

VARCHAR

Default path of the Windows metafile images of the diagrams in the model.

Note: The default folder for Windows 7 is: C:\Users\<user name>\AppData\Local\Temp.

Use a query similar to the following to retrieve information about all diagrams:

SELECT ID@, ENTIRE_MF 
FROM DIAGRAM

Back to Top