Hi,What's the difference between Control Flow and Data Flow?I need to create a package that consists of transferring data between tables and databases. For example my first task should be called something like CreateDim and the sql statement something like:use iib_datadrop table iibdw_2005.dbo.candidateSELECT Candidate.Candidate_id, Candidate.SurName + ' ' + Candidate.Given_Names as Candidate_Name ,isnull(Candidate.city,'unknown in ' + Countries.Country) as city, Countries.Country,Regions_sys.Description as Region, 'Global' as Globalinto iibdw_2005.dbo.CandidateFROM Countries INNER JOIN Candidate ON Countries.Country_id = Candidate.Country_id INNER JOIN Regions_sys ON Countries.Region_id = Regions_sys.Region_id
The task that must follow afterwards (Create Interviewer) will contain sql similar to the above and so on.I have no idea where to start. Could someone please help me? Is there perhaps a good tutorial that explains how to do the above. What i found were basic tutorial with one task and one connection. I need something more complex.ThanksWhisky-my beloved dog who died suddenly on the 29/06/06-I miss u so much.