将XML存储到Postgres中

时间:2015-04-09 23:30:17

标签: sql xml database postgresql xmltype

我有一个需要存储在SQL db(Postgres)中的XML文档。 我已经看过它是如何完成的,但我有一个问题:我是否只创建一个带有xml字段的表并将整个文档放在那里?这是一部关于电影等的文章(电影,演员......),有后来要检索的信息。

我从未在数据库中使用过XML,所以我有点困惑。

以下是我的XML示例:

<?xml version="1.0" encoding="UTF-8"?>
<cinema xmlns="movies"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="movies file:/C:/Users/Fabio/git/LAPD/movies.xsd">
<persons>
    <person id="P1">
        <name>Samuel L. Jackson</name>
        <birth>1948-12-21</birth>
    </person>
    <person id="P2">
        <name>Leonardo Di Caprio</name>
        <birth>1974-11-11</birth>
    </person>
    <person id="P3">
        <name>Quentin Tarantino</name>
        <birth>1963-03-27</birth>
    </person>
</persons>
<movies>
    <movie id="M1">
        <title>Pulp Fiction</title>
        <length>154</length>
        <year>1994</year>
        <description>The lives of two mob hit men, 
            a boxer, a gangster's wife, and a pair 
            of diner bandits intertwine in four tales of violence and redemption</description>
        <crew>
            <director ref="P3"/>
            <writer ref="P3"/>
        </crew>
        <cast>
            <actor ref="P1"/>
        </cast>
        <rate>
            <imdb>8.9</imdb>
            <rottentomatoes>9</rottentomatoes>
            <moviedb>7.8</moviedb>
            <average>8.57</average>
        </rate>
        <numOscars>1</numOscars>
    </movie>
    <movie id="M2">
        <title>Django Unchained</title>
        <length>165</length>
        <year>2012</year>
        <description>With the help of a German bounty hunter, 
            a freed slave sets out to rescue his wife 
            from a brutal Mississippi plantation owner.</description>
        <crew>
            <director ref="P3"/>
            <writer ref="P3"/>
        </crew>
        <cast>
            <actor ref="P1"/>
            <actor ref="P2"/>
        </cast>
        <rate>
            <imdb>8.5</imdb>
            <rottentomatoes>8</rottentomatoes>
            <moviedb>7.4</moviedb>
            <average>7.97</average>
        </rate>
        <numOscars>2</numOscars>
    </movie>
</movies>

2 个答案:

答案 0 :(得分:2)

您可以将整个XML文档作为值存储在单个xml列中,也可以提取数据并将其存储在或多或少的normalized form中。

哪个更好,取决于我们不知道的应用程序的所有细节。

以下是一个相关的答案,讨论了存储文档类型与数据库规范化的优缺点:

答案 1 :(得分:0)

将 XML 保存为 DB 的文本列,以便您也可以轻松地应用相等运算符。您可能会在插入 " 或 ' 时发现一些错误,因此请尝试将它们替换为其他字符,例如 ~ 或 ` 。