Есть такой xml
<?xml version="1.0"?>
<Document>
<Encoding>cp1251</Encoding>
<DisplayModeZoom>fullpage</DisplayModeZoom>
<DisplayModeLayout>single</DisplayModeLayout>
<PUnit>mm</PUnit>
<Format>a4</Format>
<Page Index="1">
..............
</Page>
</Document>
declare
xml XMLType;
xml2 XMLType;
file_b blob;
begin
select BLOB_CONTENT into file_b from flows_files.wwv_flow_file_objects$ where name='F4457/XMLTEST.xml';
xml := XMLType(file_b, 171).extract('Document/DisplayModeZoom');
dbms_output.put_line(xml.GetStringVal());
end;
В результате получается
<DisplayModeZoom>fullpage</DisplayModeZoom>
<DisplayModeZoom>fullpage</DisplayModeZoom>
Почему происходит дублирование записи???