Reputation: 750
I have migrated my database schema to SQL Azure, but I have huge(millions) data records to be migrated please suggest me an approach to move data
Approaches I have tried.
Any other approaches ..need help..!!
Upvotes: 1
Views: 208
Reputation: 91
If 14 hours using SQLAzure Migration Wizard and your database is Azure compatible, you have 4 other choices:
For more information, see https://azure.microsoft.com/en-us/documentation/articles/sql-database-cloud-migrate/#options-to-migrate-a-compatible-database-to-azure-sql-database
Upvotes: 0
Reputation: 12228
For large datasets you usually have to take a more imaginative approach to migration!
One possible approach is to take a full data backup. Ensuring that transaction logs are committed and cleared at the same time.
Upvotes: 2