Hi, All!
Why doesn't Oracle loader capable to parse an XML structure, like this:
<employees>
<employee name="John"></employee>
<employee name="Billy"></employee>
</employees>
But with pleasure it works with:
<employees>
<employee >John</employee>
<employee >Billy</employee>
</employees>
I mean an xmltag directive inside oracle's external table creation clause.
It seems that it cannot parse XML document with attributes.
Table is created, yes, but shows no records when I query it…
Any help would br very appreciated.
TIA,
Andrew.