Home Forums SQL Server 2008 SQL Server 2008 - General Script Task In SSIS to Check column with Same value and change it accordingly RE: Script Task In SSIS to Check column with Same value and change it accordingly

  • Thanks John

    For such a quick and to the point reply

    I made following code

    Declared following variable as DIM in Public Class

    1.variable as the counter = Counter

    2.package variable for the Name value = Name

    If (Counter = Name) Then

    Row.Name = row.Name + Counter

    End If

    Row.Name.ToString()

    End Sub

    But Not achieving the Result.