0
kicks
Incrementing a column value in SSIS
Many times it is required to insert an incremental value inside a column and we tend to use Identity column to achieve it. But what if we already have an identity column in the same table? To achieve this we write some custom logic to fetch the maximum value and increment the value by one.