tags:

views:

38

answers:

1

hi all

i am having my biztalk solution, uptill now i am able to do following thing

1) taken sql adapter as my source schmea i wanted node wise xml so i did xml auto,elements in my SP to its generate schmea nodewise

2) i am able to loop through all the nodes and checking condition in loop wioth decide shape now decide shape is executing perfactly,but now the issue comes i want to insert my current xml into table,from all the xml nodes i am getting single node's xml like following

<userDetails xmlns="http://SqlRowLooping"&gt;&lt;userID&gt;1&lt;/userID&gt;&lt;fName&gt;niladri&lt;/fName&gt;&lt;lName&gt;Roy&lt;/lName&gt;&lt;department&gt;it&lt;/department&gt;&lt;/userDetails&gt;

now i have updateGram as well but i think it will accept data attibutewise,right now it is firing error saying cant find procedure userID,

help how to insert this in table,

how updategram will work..

thxs

+1  A: 

Change the XML node to conform to updategram syntax, see MSDN

Timores