Conversion of Data through XML task vis SSIS

前端 未结 3 1411
日久生厌
日久生厌 2021-01-24 21:17

I have consumed simple web service for addition of numbers and returns the result in variable which is in the following format



        
3条回答
  •  独厮守ぢ
    2021-01-24 21:27

    You can use an EXECUTE SQL TASK and use code similar to this in the task:

    DECLARE @xml xml
    SET @xml = '
    35'
    
    SELECT @xml.value('int[1]','int')
    

    Of course, you will need to modify that query to insert and modify the @xml variable to your source variable. I am only trying to point you in the right direction.

    Raj

提交回复
热议问题