我收到了一个名为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有关。
是否有工具打开此文件来呈现数据模型? fole包含数百个包含所有元数据,关系等的表。但除了XML之外,我无法打开它。
有没有办法打开这个文件并渲染数据模型,以便我可以直观地看到它的样子?