1

我想创建一个触发器,它更新我的 xml 文件中的单个节点。我有一个有 2 行的表,其中一个是条目的 id,另一个是 xml 类型

drop table product_information_xml;
create table product_information_xml(
information_id Number(6,0),
products XMLType);

所以,现在一个条目看起来像这样

"INFORMATION_ID"    "PRODUCTS"
5                  <products>
                       <product_id>1</product_id>
                       <product_name>samsung galaxy note</product_name>
                       <product_description>mobile phone</product_description>
                       <category_id>11</category_id>
                       <weight_class>2</weight_class>
                       <warranty_period>+000000000-06</warranty_period>
                       <supplier_id>102069</supplier_id>
                       <product_status>orderable</product_status>
                  <list_price>500</list_price>
                  <min_price>400</min_price>
                  <catalog_url>www.samsung.de</catalog_url>
              </products>

所以现在我有另一个不是 xml 的表。并将所有 XML 标记作为单列。所以列是product_idproduct_description等等。

当我更新时product_id如何更新<product_id>xml 表中的 xml 节点?有人可以帮忙吗?

我所知道的是我从

Create or replace trigger delete_xml
after update on product_information
for each row
begin
update ?????
end;

现在我被困住了。我很想寻求帮助!

4

2 回答 2

0

正确,所以触发器中的语句将是这样的:

如果 product_id 不可为空:

update product_information_xml
     set products = updatexml(products, '/products/product_id/text()', :new.product_id)
   where information_id = :new.information_id;

如果是,请使用更长的方式(因为 updatexml 无法从 NULL 变为非 NULL:

update product_information_xml
     set products = insertxmlbefore(deletexml(products, '/products/product_id'), 
                         '/products/product_name', 
                        xmltype('<product_id>' || :new.product_id|| '</product_id>'))
   where information_id = :new.information_id;
于 2012-11-11T11:55:45.807 回答
0

如果您不知道要更新哪个节点,也许更新整个 XMLTYPE 会更容易-

update product_information_xml
   set products = xmltype('<products><product_id>'||:new.product_id||'</product_id>'||
                   '<product_name>'|| :new.product_name||'</product_name>'||
                   '<product_description>'|| :new.product_description||'</product_description>'||
                   '<category_id>'|| :new.category_id||'</category_id>'||
                   '<weight_class>'|| :new.weight_class||'</weight_class>'||
                   '<warranty_period>'|| :new.warranty_period||'</warranty_period>'||
                   '<supplier_id>'|| :new.supplier_id||'</supplier_id>'||
                   '<product_status>'|| :new.product_status||'</product_status>'||
                   '<list_price>'|| :new.list_price||'</list_price>'||
                   '<min_price>'|| :new.min_price||'</min_price>'||
                   '<catalog_url>'|| :new.catalog_url||'</catalog_url></products>')
 where information_id = :new.information_id;
于 2012-11-11T12:30:13.320 回答