Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Problem with XML

Re: Problem with XML

From: <fordesperado_at_yahoo.com>
Date: 24 May 2006 08:33:31 -0700
Message-ID: <1148484811.021186.74520@u72g2000cwu.googlegroups.com>


If I run this in TOAD:

select extract(p.po, '//PURORD') p1 from po p;

I do see the correct content. However, all the attempts to retrive it return empty values:

select id, extract(p.po, '//PURORD/COMPANY') p0, extract(p.po, '//PURORD/PONUM') p01, extract(p.po, '//PURORD') p1 from po p

select id, extractValue(p.po, '/PURORD/COMPANY') p0, extractValue(p.po, '/PURORD/PONUM') p01 from po p
; Received on Wed May 24 2006 - 10:33:31 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US