Hi,
I am exporting data from Excel to SQL Server byh using SSIS and in column 1 there were some empty cells in excel. I want to fill those empty columns with above value
eg. TestID(column name)
test1
EmptyCell1
test2
Emptycell2
Here I want to fill EmptyCell1 with test1 and EmptyCell2 with test2 by SSIS process before inserting data into Table.
I can use TSQL update statement after inserting data into the table, but I don't want to do any changes after data insert.
Can anyone help?
↧