Hello,
I have to migrate data from an old Access 2003 database to another existing database with different table and columns. For example, I have Customers table in both databases, but in the local database I have Name, Surname1 and Surname2 columns and in azure I have only FullName column (Azure.FullName = Local.Name + " " + Local.Surname1 + " " + Local.Surname2). Another difference is that in local DB I have PhoneNumber and MobilePhoneNumber columns and in Azure only PhoneNumber column. Sometimes PhoneNumber is home phone number, other times mobile phone number or maybe empty, so I have to check if both columns and get only one phone number. Other thing that I have to do is the following: for each row that migrates in Customers table I have to create another row in another table named Services with the ID generated automatically in the Customers table.
These are very complicated things for me because I have never used Integration Services. I'm doing some test and using SQL Server Import and Export Wizard 32-bit (running from Apps screen of Windows 8.1) I have created a simple package (don't know if it is a package). In this case I have migrate only direct columns. Then I can see my test element in MS SQL Server Management Studio in MyLocalServerName->Stored Packages->MSDB->MyTest. But now I don't know what I have to do with this...
In some sites I can see things like that:
But I don't know how to get this design view...
I'm working with Windows 8.1 Pro (x64) machine with SQL Server 2012 Enterprise (on the intallation time I check all components).
Can you help me explaining the steps? Any useful tutorial?
Thanks in advance,
Jon.