For example I have got 2 tables Employee and Department. With the queries like
Select EmpID,Employee From dbo.EmployeeSelect DepID,DeptName From dbo.Department
which I have put 2 EXECUTE SQL tasks.
and want to insert those select statements into some Destination table.
Output :
ID SQL_Stmt1Select EmpID,Employee From dbo.Employee2Select DepID,DeptName From dbo.Department
where as my structure looks like this :
Suggest me how can I proceed on this.
Thank you