datamodel.dbm というファイルが提供されています
そのファイル内には、大量の XML があります。
次の XML で開きます。
<?xml version="1.0" encoding="UTF-8"?>
<!--
CAUTION: Do not modify this file unless you know what you are doing.
Unexpected results may occur if the code is changed deliberately.
-->
<dbmodel pgmodeler-ver="0.8.1" last-position="0,0" last-zoom="1"
default-schema="public" default-owner="postgres">
<role name="xxxx"
superuser="true"
encrypted="true"
password="********"
sql-disabled="true">
</role>
<database name="xxxx" encoding="UTF8" lc-collate="en_US" lc-ctype="en_US">
<role name="xxxx"/>
<tablespace name="pg_default"/>
</database>
<schema name="public" protected="true" rect-visible="true" fill-color="#e1e1e1" sql-disabled="true">
</schema>
<extension name="postgis" cur-version="2.1.7">
<schema name="public"/>
<comment><![CDATA[PostGIS geometry, geography, and raster spatial types and functions]]></comment>
</extension>
私は SQL Server のやつです。このファイルは PostGres と関係があると思います。
このファイルを開いてデータ モデルをレンダリングするツールはありますか? フォレには、すべてのメタデータ、関係などを含む何百ものテーブルが含まれています。しかし、XML 以外ではこれを開く方法がありません。
このファイルを開いてデータ モデルをレンダリングし、どのように見えるかを視覚的に確認する方法はありますか?