Hi guys,
Hope u guys help me.
Actuall I want to migrate from Access Database to SQL Server which has better structured table.
Suggest me a solution to do the following.
I have source table as follows
Table_Source(EmployeeNo,Fever,Cold,HeadAche) - So if a person is having fever the column will be marked as true.
Employee can have multiple reasons.
New tables
Reference Table(ReasonId,Reason) 1 Fever,2 cold,3 headache
Destination table(Employee_No,Reason Id)- 1 1 , 2 2
How to achieve this through SSIS?
Please suggest a way