Skip to content
Advertisement

XML load is slow. Using text() when reading XML file with attribute-centric mapping

I am reading in an XML file into the database. It works fine however it is very slow. I was wondering if I can use text() in order to speed the process up similarly to the solution in this post: Xml select query xpath is slow.
My problem however is that the solution is for XML with element-centric mapping while I have attribute-centric mapping so I’m not sure how to use text() in my case.

The XML looks like this

I am using the following code

The file I am reading is 13MB and it takes 3.5 hours to read it in.

Advertisement

Answer

Without being able to test on so many rows as you have, I’ll give you this script to try out (fiddle<>):

This would explicitly query for Level6 nodes, then backtrack for the parents’ attribute values. This is quite likely faster than cross applying queries for each individual LevelN element.


Updated, for elements in level 6 with different names and assuming only one such element of each name appears as a child of level 5:

This selects nodes on level 5, backtracks to parents for parent attributes, then selects child elements based on name. Selects the first such element using [1] selector.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement