vote up 1 vote down star

What are the benefits of using the "xml" datatype versus storing the xml content inside a "text" datatype?

Am I able to query by some specific xml attribute or element?

What about indexing and query performance?

Besides the postgresql manual what other online sources can you point me to?

flag

33% accept rate

2 Answers

vote up 1 vote down check

Generally speaking, the benefits are the same ones as for any other data type and why you have data types other than text at all: data integrity (you can only store valid (well, well-formed) XML values in columns of type xml) and type safety (you can only perform operations on XML values that make sense for XML). One example is the xpath() function, which only operates on values of type xml, not text. Indexing and query performance characteristics are not better or worse than for say the text type at the moment.

link|flag
vote up 3 vote down

Right now the biggest thing you get from XML fields over raw text is XPath. So if you had something similar to

CREATE TABLE pages (id int, html xml);

you could get the title of page 4 by

SELECT xpath('/html/head/title/text()', html) FROM pages WHERE id = 4;

Right now XML support is fairly limited, but got a lot better in 8.3, current docs are at link text

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.