Reputation: 151
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:
.sqlproj
to reflect Microsoft Azure SQL Database V12Now, 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.
Upvotes: 0
Views: 313
Reputation: 171
You can export the database to a .bacpac file, upload it to Azure storage and import it to Azure SQL Database. Here're the detailed steps:
You can find more details in the online document.
Upvotes: 2