zoukankan      html  css  js  c++  java
  • FW: Loading XML Data into SQL Server (SQL Spackle)

    Loading XML Data into SQL Server (SQL Spackle)

    "SQL Spackle" is a collection of short articles written based on multiple requests for similar code. These short articles are NOT meant to be complete solutions. Rather, they are meant to "fill in the cracks".

    --Phil McCracken

    Introduction

    With XML becoming more and more the rage, DBAs are seeing many more requests to deal with XML data files. The question is: how do you load the data in the XML file into a table in SQL Server?

    The XML File
    For the purposes of this article, let's use a small XML file that is readily available on the Internet. W3Schools.com has such a sample file at http://www.w3schools.com/XML/cd_catalog.xml. As you might surmise by the name of the file, it contains brief information about a CD catalog. Please download and save this file to your computer. I am going to assume that this is being saved in the C:\SQL folder, and that you are keeping the file name the same (cd_catalog.xml). If you change any of this, make appropriate changes to the code below.

    The structure of the XML file is as follows. Note that there are multiple <CD> tags.

    <CATALOG>

      <CD>

        <TITLE>Empire Burlesque</TITLE>

        <ARTIST>Bob Dylan</ARTIST>

        <COUNTRY>USA</COUNTRY>

        <COMPANY>Columbia</COMPANY>

        <PRICE>10.90</PRICE>

        <YEAR>1985</YEAR>

      </CD>

    </CATALOG>

    The Database
    Let's just keep this short and simple. We will load this file into one table, with an identical structure as that of the XML file.

    CREATE TABLE dbo.CD_Info (

      Title        varchar(100),

      Artist       varchar(100),

      Country      varchar(25),

      Company      varchar(100),

      Price        numeric(5,2),

      YearReleased smallint);

    Load the file into a staging table

    We will be utilizing the OpenRowset function to bulk load the file into a staging table. First, we will create a staging table with one column of the XML data type. We will then load the file into this column. Note that use of the OpenRowset function requires a table alias.

    DECLARE @CD TABLE (XMLData XML);

    INSERT INTO @CD

    SELECT *

    FROM OPENROWSET(BULK N'C:\SQL\cd_catalog.xml', SINGLE_BLOB) rs;

    Retrieve the data from the staging table

    Next we will retrieve the data from the staging table, and "shred" the XML into its columns. One key thing to note about XML: regardless of the case sensitivity of your server/database, XML commands are always case sensitive. In the sample file, all of the XML tags are in upper case, so everything we need to do needs to be in upper case also.

    This command will retrieve each element of each CD in the sample file:

    SELECT Title = x.data.value('TITLE[1]','varchar(100)'),

           Artist = x.data.value('ARTIST[1]','varchar(100)'),

           Country = x.data.value('COUNTRY[1]','varchar(25)'),

           Company = x.data.value('COMPANY[1]','varchar(100)'),

           Price = x.data.value('PRICE[1]','numeric(5,2)'),

           YearReleased = x.data.value('YEAR[1]','smallint')

    FROM @CD t

           CROSS APPLY t.XMLData.nodes('/CATALOG/CD') x(data);

    Note in this command the nodes and value functions. These are XML functions. The nodes function specifies the path to the data that you will be using, and it requires an alias. You then apply the value function to the alias to retrieve the specific data that you want. In the value function, you need to supply the element as a singleton expression, and the data type.

    The CROSS APPLY will apply each row in the staging table to the XML nodes function. For more information on how the CROSS APPLY works, I refer you to these articles:
    Understanding and Using Apply, Part 1: http://www.sqlservercentral.com/articles/APPLY/69953/
    Understanding and Using Apply, Part 2: http://www.sqlservercentral.com/articles/APPLY/69954/

    Inserting the data into the CD_Info table

    At this point, inserting the data is very simple: just put an insert statement in front of the above select statement.

    DECLARE @CD TABLE (XMLData XML);

    INSERT INTO @CD

    SELECT *

    FROM OPENROWSET(BULK N'C:\SQL\cd_catalog.xml', SINGLE_BLOB) rs;

    INSERT INTO dbo.CD_Info (Title, Artist, Country, Company, Price, YearReleased)

    SELECT Title = x.data.value('TITLE[1]','varchar(100)'),

           Artist = x.data.value('ARTIST[1]','varchar(100)'),

           Country = x.data.value('COUNTRY[1]','varchar(25)'),

           Company = x.data.value('COMPANY[1]','varchar(100)'),

           Price = x.data.value('PRICE[1]','numeric(5,2)'),

           YearReleased = x.data.value('YEAR[1]','smallint')

    FROM @CD t

           CROSS APPLY t.XMLData.nodes('/CATALOG/CD') x(data);

    SELECT *

    FROM dbo.CD_Info;

    References

    OpenRowset: http://msdn.microsoft.com/en-us/library/ms190312.aspx
    Value(), Nodes() and OpenXML(): http://msdn.microsoft.com/en-us/library/bb522645.aspx

    FW: http://www.sqlservercentral.com/articles/XML/71659/

  • 相关阅读:
    自然二进制与格雷码的转换
    状态机小结
    FSM的几种策略
    跨越鸿沟:同步世界中的异步信号
    边沿检测技术
    门控时钟和时钟使能
    ALTERA器件中复位电路实现之-异步复位同步化
    同步复位
    Altera USB Blaster 仿真器(EPM240仿制版
    五、裸机烧写
  • 原文地址:https://www.cnblogs.com/aot/p/1924983.html
Copyright © 2011-2022 走看看