Skip to content
Advertisement

I have the following XML and i need to store it in a sql table [closed]

i need the tags ServerName, DBName, UserName, RoleName. I can not access to these tags, because the first part of the xml is creating me troubles

Advertisement

Answer

In your XML there are two different structures:

–The query for your first element with <TN>

–Alternative for the previous if you can be sure, that there is just one single <TN> element:

–the query for the repeating <MS><S> elements

–and one more to retrieve each embedded structure separately. This allows for a step-wise approach (e.g. with an intermediate staging table).

The idea in short:

  • We need to declare the existing default namespace
  • we use .nodes() to dive into repeating elements
  • We use .value() to retrieve data (either from @xml directly or from a Xml fragment coming from .nodes()).
  • We use .query() to retrieve Xml fragments.
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement