Hi ALL
I need to update 10 records in batch using ssis.
like My query is
Update A set col1=B.value from table1 A Inner join (select top 10 value from tabl2 )B ON A.id=B.id where B.value is null
what i require that first it update 10 records then found column where B.value is null again update 10 record and so on untill all records update.
I need to update only 10 records at one time.
Kindly help me.