我收到了一个名为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>我是一个Server家伙,我相信这个文件与PostGres有关。
是否有打开此文件以呈现数据模型的工具?折叠包含数百个包含所有元数据、关系等的表。但是,除了XML之外,我无法打开它。
有方法打开这个文件并呈现数据模型吗?这样我就可以直观地看到它的样子了吗?
发布于 2015-09-21 03:53:23
这是一个pgModeler文件。您可以在https://pgmodeler.io上找到更多信息。
https://stackoverflow.com/questions/32686959
复制相似问题