I have a set of SQL Server 2008 R2 databases. I need to migrate them to Azure SQL V12. Steps I have completed so far:
- Updated the
.sqlprojto reflect Microsoft Azure SQL Database V12 - Completed all the schema changes in the solution which include added Master key, creating a credential object, adding reference tables (for all the cross referenced tables between databases), And also took care of the scripts/schema related to tempdb tables.
- Build the sqlproj projects. SystemDB and ClientDB.
- Also completed deploying this updated schema from solution to the Azure SQL database on standard tier databases to validate that the schema is correct for the target.
Now, How do I go about moving the data from my original database tables into the newly created Azure SQL databases?
I have tried to follow document here. Recipe 3. But, My new sqlproj project does not deploy to the copy of databases which is on SQL Server 2008 R2. What am I missing here? Is there an Azure SQL compatible SQL Server version that I need to move my original databases to?
Any help will be greatly appreciated.
Thanks.