DB2與XML
db2與xml
purexml特性允許存儲(chǔ)在數(shù)據(jù)庫(kù)表中的列格式良好的xml文檔。這些列具有xml數(shù)據(jù)庫(kù)。數(shù)據(jù)通過(guò)存儲(chǔ)xml數(shù)據(jù),xml列放在其固有的層次化的形式。所存儲(chǔ)的xml數(shù)據(jù)可以被訪問(wèn)和db2數(shù)據(jù)庫(kù)服務(wù)器功能進(jìn)行管理。 xml數(shù)據(jù)在其天然分層形式存儲(chǔ)實(shí)現(xiàn)高效的搜索,檢索和xml的更新。更新xml數(shù)據(jù)的值,需要使用兩個(gè)xquery,sql或組合。
創(chuàng)建一個(gè)數(shù)據(jù)庫(kù)和表來(lái)存儲(chǔ)xml數(shù)據(jù)
創(chuàng)建數(shù)據(jù)庫(kù)通過(guò)以下語(yǔ)法:
語(yǔ)法:
db2 create database xmldb
默認(rèn)情況下,數(shù)據(jù)庫(kù)使用utf-8(unicode),代碼集。激活數(shù)據(jù)庫(kù),并連接到它:
語(yǔ)法:
db2 activate db <db_name> db2 connect to <db_name>
示例:
db2 activate db xmldb db2 connect to xmldb
創(chuàng)造一個(gè)良好的xml文件,并創(chuàng)建一個(gè)列作為“xml”的數(shù)據(jù)類型的表。它是強(qiáng)制性通過(guò)包含在雙引號(hào)xml語(yǔ)法的sql查詢。
語(yǔ)法:
db2 “create table <schema>.<table>(col <datatype>, col <xml datatype>)”
示例:
db2 "create table shope.books(id bigint not null primary key, book xml)"
插入xml值到表,格式良好的xml文檔是使用sql語(yǔ)句“insert”插入xml類型列。
語(yǔ)法:
db2 “insert into <table_name> values(value1, value2)”
例如:
db2 "insert into shope.books values(1000, '<catalog> <book> <author> gambardella matthew</author> <title>xml developers guide</title> <genre>computer</genre> <price>44.95</price> <publish_date>2000-10-01</publish_date> <description>an in-depth look at creating application with xml</description> </book> </catalog>')"
更新表中的xml數(shù)據(jù)
可以通過(guò)使用以下語(yǔ)法更新表中的xml數(shù)據(jù):
語(yǔ)法:
db2 “update <table_name> set <column>=<value> where <column>=<value>”
示例:
db2 "update shope.books set book='<catalog> <book> <author> gambardella, matthew</author> <title>xml developers guide</title> <genre>computer</genre> <price>44.95</price> <publish_date>2000-10-01</publish_date> <description>an in-depth xml</description> </book> </catalog>' where id=1000"
相關(guān)文章