Community Pick: Many members of our community have endorsed this article.
Editor's Choice: This article has been selected by our editors as an exceptional contribution.

Loading Complex XML Using SSIS

ValentinoVBI Consultant
CERTIFIED EXPERT
1998: C++ - SQL Server 6.5
2000-2007: C++, VB6, C#, java - SQL Server 7.0-2005
2008-...: SQL Server 2005-2016
2014-2017: MVP Data Platform
Published:
Updated:

Introduction

In my previous article I showed you how the XML Source component can be used to load XML files into a SQL Server database, using fairly simple XML structures.  In this follow-up article I will demonstrate how to tackle the complex XML issue.
 

The Complex XML Example

You probably know that SSRS reports, RDLs, are actually XML files.  And they’re not the easiest types of XML files around.  To humans they are still readable but the structure can be quite complex.  So there we’ve got our example: an RDL.  More specifically I’ll be using the RDL that’s available for download in one of my earlier articles.
 

The Goal

Every good example has got a goal.  Our goal today is to retrieve a list of datasets and fields as defined in the RDL.  Shouldn’t be too difficult, right?
 

Using The XML Source Component

Let’s try to get this done through the XML Source component with which we’re very familiar by now.  You know the drill: drag an XML Source into your Data Flow, open it up and configure the XML and XSD locations.

Note: to be able to do this I cheated a bit by manually manipulating the RDL a little.  More precisely I removed all the namespace references from the <report> tag and further down the XML (removed “rd:”).

With both files configured, let’s have a look at the Columns page:

 The XML Source component handling a really complex XML fileLook at that massive list of output flows!  In total I’ve gotten 45 of them, all for free!  Even if you’re up to the task of creating 45 output tables, do you really want to find out how to get these joined together?  To prevent creating that bunch of tables you may consider using the Merge Join component… 45 times in your data flow. Didn’t think so!

Sure, it would run fine if you manage to get it all constructed.  But in my opinion this is just too silly to try out because there’s an interesting alternative.

And that alternative is XSLT – eXtensible Stylesheet Language Transformations.
 

Using XSLT

With XSLT you describe what you want to retrieve from the XML document and what it should look like.  In this example we’ll be retrieving the list of datasets and their fields, in CSV format.  CSV stands for Comma-Separated Values, although I prefer the term “Character-Separated Values” as the separator is not always a comma.

To be able to write correct XSLT, you need to know what the XML structure looks like.  Here are the first 31 lines of the sample RDL file mentioned earlier.

 
<?xml version="1.0" encoding="utf-8"?>
                      <Report>
                        <AutoRefresh>0</AutoRefresh>
                        <InitialPageName>A Very Unique Name</InitialPageName>
                        <DataSources>
                          <DataSource Name="srcContosoDW">
                            <DataSourceReference>ContosoDW</DataSourceReference>
                            <SecurityType>None</SecurityType>
                            <DataSourceID>b7a3d32c-e95d-4acf-bb99-9d60755303ea</DataSourceID>
                          </DataSource>
                        </DataSources>
                        <DataSets>
                          <DataSet Name="dsProductList">
                            <Query>
                              <DataSourceName>srcContosoDW</DataSourceName>
                              <CommandText>select DPC.ProductCategoryName, DPS.ProductSubcategoryName, DP.ProductName
                      from dbo.DimProduct DP
                      inner join dbo.DimProductSubcategory DPS
                          on DPS.ProductSubcategoryKey = DP.ProductSubcategoryKey
                      inner join dbo.DimProductCategory DPC
                          on DPC.ProductCategoryKey = DPS.ProductCategoryKey;</CommandText>
                            </Query>
                            <Fields>
                              <Field Name="ProductCategoryName">
                                <DataField>ProductCategoryName</DataField>
                                <TypeName>System.String</TypeName>
                              </Field>
                              <Field Name="ProductSubcategoryName">
                                <DataField>ProductSubcategoryName</DataField>
                                <TypeName>System.String</TypeName>
                              </Field>

Open in new window


As you can see, the main node is called Report.  Nested under Report we’ve got DataSets, which can have several DataSet elements.  Each DataSet has a set of Fields with one or more Field elements.  Using that information we come to the following XSLT.

 
<?xml version="1.0" encoding="utf-8"?>
                      <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions">
                        <xsl:output method="text" version="1.0" encoding="UTF-8" indent="no"/>
                        <xsl:template match="/">
                          <xsl:text>DataSource;DataSet;Field</xsl:text>
                          <xsl:text>&#13;&#10;</xsl:text>
                      
                          <xsl:for-each select="Report/DataSets/DataSet/Fields/Field">
                            <xsl:text>"</xsl:text>
                            <xsl:value-of select="../../Query/DataSourceName"/>
                            <xsl:text>";"</xsl:text>
                            <xsl:value-of select="../../@Name"/>
                            <xsl:text>";"</xsl:text>
                            <xsl:value-of select="@Name"/>
                            <xsl:text>"</xsl:text>
                            <xsl:text>&#13;&#10;</xsl:text>
                          </xsl:for-each>
                      
                        </xsl:template>
                      </xsl:stylesheet>

Open in new window


So, what is the XSLT describing?  On line three, we say that the output should be text in UTF-8 encoding.  The “template match” on the fourth line takes the whole XML document into consideration, hence the forward slash.  Then on line five we start writing output through the xsl:text tag.  This is our header line.  As you can see we’re using the semi-colon as column separator in the CSV output.  Line six adds a CRLF (carriage-return + line feed) to the output.

Then the fun part starts.  If you have experience with XPath, the way XSLT walks through the XML document should look familiar to you.

The xsl:for-each tag loops over all the Fields in all the DataSets in the document.

Using the xsl:value-of tag, we can fetch values out of the XML.  The first value being retrieved is the name of the data source that dataset is using.  (I’ve added the retrieval of the data source to demonstrate how element values are retrieved.)  The path to the DataSourceName element is Report/DataSets/DataSet/Query/ so we use the double-dot syntax to navigate two levels up in the XML tree.  The value of the element itself is retrieved by just using its name, as demonstrated in the XSLT above.

The next value-of tag retrieves the Name attribute of the DataSet, hence the two levels up, and the final value-of fetches the Name attribute of the Field element.

Now that the XSLT is clear for everyone, how do we apply it to our XML document?  Here comes the time for SSIS once more!

Open up the BIDS with the Control Flow of an SSIS package active and throw in an XML Task component.

 The XML Task, one of the Control Flow Items in Integration ServicesDouble-click the component to open up the XML Task Editor.  This is what it looks like by default:

 XML Task Editor: default settingsAs this is an all-round XML task that can handle several XML-related tasks, the first setting that we need to modify is called OperationType.  That’s not too complicated because it comes with a dropdown and XSLT is one of the possible values.

 The different operation types supported by the XML TaskWith XSLT selected, the editor transforms into the following:

 The XML Task Editor with XSLT as OperationTypeNow we need to configure where the task can find our XML file, through the Source property.  Click the Source textbox to make the dropdown appear and select <New File connection…>.

 You can create a new File Connection through the XML Task EditorIn the File Connection Manager Editor, leave the Usage type at Existing file and select the RDL.

Next up we’re going to specify where the task can find the XSLT that needs to be applied to the XML.  That can be done through the Second Operand settings.  As SecondOperandType, select File Connection.  Use the dropdown of the SecondOperand property to create a second new file connection that points to your XSLT file.

With that set up as well, only one step remains.  The task still doesn’t know where the output should be saved.  Or that it actually should get saved.  So first switch the SaveOperationResult property to True.  As you can see, DestinationType is already set to File Connection, that’s what we need.  Use the dropdown of the Destination property to create a third new file connection.  This time however, Usage Type should be set to Create File.  Specify path and filename for the output file and click OK to close the File Connection Manager Editor.

This is what our XML Task now looks like in the editor:

 The XML Task Editor with all input and output files specified, as expected for our XSLT experimentAs shown above, I’ve called the output file DatasetInfo.csv.

One more property that can be interesting is the OverwriteDestination property.  Setting it to True can ease the testing of your package if you need to execute it multiple times, which you’ll probably want when your XSLT is not giving the expected output.  Don’t forget to set it to False afterwards (depending on what behavior you actually expect from your package).

Okay, now close the XML Task Editor and execute the package.  If you haven’t made any mistakes, the task should color green and you should have an extra file on your hard drive somewhere.  Here’s what the content of my DatasetInfo.csv looks like:
 

DataSource;DataSet;Field
"srcContosoDW";"dsProductList";"ProductCategoryName"
"srcContosoDW";"dsProductList";"ProductSubcategoryName"
"srcContosoDW";"dsProductList";"ProductName"
"srcContosoDW";"dsProductList";"ProductCategoryColor"
"srcContosoDW";"dsProductList";"EasterEgg"
Look at that, a list of fields, all part of the dsProductList dataset.
 

“Hang on, wasn’t this article going to demonstrate how to get complex XML files imported into our database?  And now you’re writing the data to a file?!”
Well yeah, you’re right.  Unfortunately the XML Task does not offer the possibility to write to a table in a database.  So to get the data imported into your database you’ll need to set up a Data Flow that imports the CSV files.  But that shouldn’t be too difficult to achieve, right?

Mission accomplished!
 

Conclusion

With this article I have shown how Integration Services can be used to retrieve data out of complex XML files, without actually using the XML Source component.  I hope you’ve enjoyed reading it as much as I had while writing.  Or maybe you know another interesting method to get complex XML imported.  Feel free to post comments!

Have fun!

PS: if you liked this article, may I kindly ask you to click that little Yes-button?  Thanks!

Valentino.

References
XSLT (Wikipedia)
CSV (Wikipedia)
XML Task (MDSN)

Originally appeared at my blog: http://blog.hoegaerden.be/2011/04/20/loading-complex-xml-using-ssis
7
22,472 Views
ValentinoVBI Consultant
CERTIFIED EXPERT
1998: C++ - SQL Server 6.5
2000-2007: C++, VB6, C#, java - SQL Server 7.0-2005
2008-...: SQL Server 2005-2016
2014-2017: MVP Data Platform

Comments (9)

Jim HornSQL Server Data Dude
CERTIFIED EXPERT
Most Valuable Expert 2013
Author of the Year 2015

Commented:
Thank you for writing this article (and the previous one) VV.  I have a project now where I'm being given an .xml that has multiple notes, albeit always with a single 'row', and the requirement is to write it as a flat SQL row.   Rather than hard-code every node in the SSIS, this looks like a quicker solution.
ValentinoVBI Consultant
CERTIFIED EXPERT
Most Valuable Expert 2011

Author

Commented:
Hey Jim,

Good to hear my article could help you!  Since I wrote the article I've used the approach successfully in several other projects, a really good alternative to the limited XML source!

VV.
neehar gollapudiSQL developer

Commented:
I couldn't find a tutorial on how to build the XSLT file if you only have the XML. Can someone guide me? W3Schools tutorials didn't help much. Basically I am tyring to import a XML file into SQL server and the XML has complex mixed datatypes. So, in this article the author was able to reference the rdl file in the XSLT code. So, how do i do it with the XML file i have.

Regards,
Neehar
Hi. How can I fetch an XML from a remote URL that also required credentials login? I have no clue how set up the package.
Hi. How can I fetch an XML from a remote URL that also required credentials login? I have no clue how to set up the package.

View More

Have a question about something in this article? You can receive help directly from the article author. Sign up for a free trial to get started.