我使用的是Oracle 12版第1版
我一直在尝试编写一个函数来计算存储为XML的对象之间的距离。
为了这样做,我已经掌握了以下内容......
首先,注册XML架构。
BEGIN
-- Register the schema
DBMS_XMLSCHEMA.registerSchema('http://www.example.com/fvInteger.xsd',
'<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="FeatureVector">
<xs:complexType>
<xs:sequence>
<xs:element name="feature" type="xs:integer" minOccurs="5" maxOccurs="999"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>',
TRUE, TRUE, FALSE);
END;
/
然后创建表
CREATE TABLE cophirfvXML_int (
id NUMBER,
complex_obj XMLTYPE)
XMLTYPE complex_obj STORE AS OBJECT RELATIONAL
XMLSCHEMA "http://www.example.com/fvInteger.xsd"
ELEMENT "FeatureVector";
将以下数据插入上表
ID=1
<FeatureVector><feature>85</feature><feature>-41</feature><feature>29</feature><feature>26</feature><feature>-29</feature><feature>1</feature><feature>-29</feature><feature>-8</feature><feature>15</feature><feature>6</feature><feature>-17</feature><feature>6</feature><feature>-27</feature><feature>8</feature><feature>-12</feature><feature>5</feature></FeatureVector>
ID=2
<FeatureVector><feature>98</feature><feature>77</feature><feature>-127</feature><feature>27</feature><feature>-30</feature><feature>-13</feature><feature>-1</feature><feature>14</feature><feature>-31</feature><feature>-56</feature><feature>-10</feature><feature>6</feature><feature>-10</feature><feature>-12</feature><feature>5</feature><feature>19</feature></
FeatureVector>
... and so on (I am working with 200.000 objects).
最后,功能&gt;&gt;
create or replace FUNCTION myDistance(
innXML XMLType,
outXML XMLType
) RETURN number
IS
total NUMBER := 0;
docInn xmldom.DOMDocument;
docOut xmldom.DOMDocument;
nInn xmldom.DOMNode;
nOut xmldom.DOMNode;
nlInn xmldom.DOMNodeList;
nlOut xmldom.DOMNodeList;
len number;
BEGIN
--Converte os atributos xmltype para DOMDocuments.
docInn := dbms_xmldom.newDOMDocument(innXML);
docOut := dbms_xmldom.newDOMDocument(outXML);
nlInn := xmldom.getElementsByTagName(docInn, '*');
nlOut := xmldom.getElementsByTagName(docOut, '*');
len := xmldom.getLength(nlInn);
for i in 1..len-1 loop
nInn := xmldom.item(nlInn, i);
nOut := xmldom.item(nlOut, i);
total := total + ABS(xmldom.getNodeValue(DBMS_XMLDOM.getFirstChild(nInn)) - xmldom.getNodeValue(DBMS_XMLDOM.getFirstChild(nOut)));
end loop;
RETURN total;
END;
/
该功能表现糟糕。它使用太多内存并且比预期慢得多(主要是因为使用了对象关系存储)。
我甚至得到错误:
ORA-00039:erro durante ac?o periodica ORA-04036:Memoria PGA usada pela instancia exce PGA_AGGREGATE_LIMIT ORA-06512:em &#34; XDB.DBMS_XMLDOM&#34;,第5027行ORA-06512:em&#34; XDB.DBMS_XMLDOM&#34;,line 5052 ORA-06512:em&#34; HIGIIA.XML_MANHATTAN_DISTANCE&#34;,第19行
此外,我使用查询尝试了这个不同的解决方案,但性能也不好。
SELECT SUM( ABS(oFV.feature - iFV.feature) )
INTO total
FROM XMLTABLE(
'//FeatureVector/feature'
PASSING outXML
COLUMNS rn FOR ORDINALITY,
feature NUMBER PATH '.'
) oFV
INNER JOIN
XMLTABLE(
'//FeatureVector/feature'
PASSING innXML
COLUMNS rn FOR ORDINALITY,
feature NUMBER PATH '.'
) ifv
ON ( oFV.rn = iFV.rn );
我可以做些什么来改善其表现?
我确实需要提高性能,而不是解决ORA-00039错误 增加PGA总限额。
希望有人可以帮忙!在此先感谢!!
答案 0 :(得分:1)
一些事情 - 我猜你的内存不足是因为没有调用DBMS_XMLDOM.freeDocument(docXXX);
但是对于性能问题 - 如果不及时具体,很难说代码是否存在问题,或者是否与解析出代码相关的基本预期开销相关的xmltype字段值。我的直接印象是,预先计算并存储距离&#34;值(插入/更新/删除xml时)。这样你就可以通过直接的sql查询数据而不需要读取端的所有解析开销。如果要保持xml架构的清洁,可以将计算值存储在xml或关系表中。