Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stored procedure: pass XML as an argument and INSERT (key/value pairs)

How would you construct and pass XML as an argument to a stored procedure on an MS SQL 2005 server? And how would you INSERT the XML into a table?

The data is in the form of key/value pairs:

[
    0: [key, value],
    1: [key, value],
    2: [key, value]
]
like image 284
cllpse Avatar asked Aug 24 '10 15:08

cllpse


1 Answers

Here's one example:

/* Create the stored procedure */
create procedure ParseXML (@InputXML xml)
as
begin
    declare @MyTable table (
        id int,
        value int
    )

    insert into @MyTable 
        (id, value)
        select Row.id.value('@id','int'), Row.id.value('@value','int') 
            from @InputXML.nodes('/Rows/Row') as Row(id)        

    select id, value
        from @MyTable
end
go

/* Create the XML Parameter */
declare @XMLParam xml
set @XMLParam = '<Rows>
                     <Row id="1" value="100" />
                     <Row id="2" value="200" />
                     <Row id="3" value="300" />
                 </Rows>'

/* Call the stored procedure with the XML Parameter */
exec ParseXML @InputXML = @XMLParam

/* Clean up - Drop the procedure */
drop procedure ParseXML
go
like image 162
Joe Stefanelli Avatar answered Oct 19 '22 03:10

Joe Stefanelli