Conversion of Data through XML task vis SSIS

前端 未结 3 1388
日久生厌
日久生厌 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 = '<?xml version="1.0"?>
    <int>35</int>'
    
    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

    0 讨论(0)
  • 2021-01-24 21:35

    Reshma you have four questions open about this same topic and it's very confusing. Please don't ask any more questions until you have resolved your issue fully. In your case you can use exactly the same method I described in

    Inserting Data into SQL Server from variables via SSIS

    To generate the string that Raj suggested, then run that in an execute SQL task and capture the result.

    The alternative trivial solution is to use string expressions to extract the number from the XML. but that is not 'proper' XML shredding.

    Can you clarify, is there a business need behind this or are you just learning about XML? SSIS is not the best tool for shredding and processing XML.

    0 讨论(0)
  • 2021-01-24 21:36

    You must change the 'SecondOperand' value to //int

    If you want to save the result, configure 'OperationResult' properties.

    0 讨论(0)
提交回复
热议问题