Hello.
I'm trying to query the records within a large, ~15GB, XML file. The format
of the file is:
<xmlfeed version="1" generated="2022-08-11 13:00:00">
<records>
<record>
<field1></field1>
<field2></field2>
</record>
<record>
<field1></field1>
<field2></field2>
</record>
</records>
</xmlfeed>
Unfortunately the records I want to query are at the third level and the
XMLReader expects records at the second level.
I don't have any control over the format of the source file. Is there a way
I can get to these inner records for my queries without having to load the
entire file?
Thank you for your time.
David