0

我需要帮助以使用单个过程将不同格式的 xml 数据插入 SQL Server 数据库>

前任:

<Items>
    <item></item>
    <item></item>
    <item></item>
</Items>

<Products>
    <product></product>
    <product></product>
    <product></product>
</Products>

所以我需要一个程序将数据插入数据库,以 xml 作为输入。(我有近 20 种 xml 格式),我将只传递一个 xml 作为输入,但不是全部。

问候贾亚钱德拉

4

1 回答 1

0

您可以尝试以下方法:

create procedure spInsertData
(
    @data xml
)
as
begin
    set nocount on

    if @data.exist('/Items') = 1
    begin
        insert into Items (Name)
        select T.c.value('text()[1]', 'nvarchar(100)')
        from @data.nodes('/Items/Item') T(c)
        where not exists (select 1 from Items where Name = T.c.value('text()[1]', 'nvarchar(100)'))

        return;
    end
    else if @data.exist('/Products') = 1
    begin
        insert into Products (Name)
        select T.c.value('text()[1]', 'nvarchar(100)')
        from @data.nodes('/Products/Product') T(c)
        where not exists (select 1 from Products where Name = T.c.value('text()[1]', 'nvarchar(100)'))

        return;
    end
    -- etc.

end
于 2013-08-14T08:41:44.020 回答