Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: Executing Web Service in a ForEach Loop with Result Set

    Hi,

    Thnks for the reply.

    But My issue is suppose webservice is having a method Insert(Employee emp). It requires input parameter of type Employee.

    How can we dynamically assign SQL Task results to...

  • RE: How can i split my input variable string and compare?

    Hi,

    Create a function which takes csv(coma saperated values) as input and returns all the values as rows of a table.

    Function:

    CREATE FUNCTION [dbo].[CsvToTable]

    (

    -- Add the parameters for the function here

    @Csv...

  • RE: How to avoid Cursors?

    Hi,

    Thanks for your solution. Its really great to see a slution without using cursors as well as any loops.

    The following solution also working..

    DECLARE @strTemp VARCHAR(MAX)

    SET @strTemp = ''

    Select @strTemp...

Viewing 3 posts - 1 through 3 (of 3 total)