Reputation: 35905
As far as I know the key points to migrate an existing database to SQL Azure are:
master
database.And I think that's all, am I right? Am I missing any other consideration before starting a migration?
Kind regards.
Upvotes: 2
Views: 779
Reputation: 5056
Update 2015-08-06
Additional considerations:
The following features are NOT supported:
Upvotes: 2
Reputation: 126
Another key area to point out are SQL Jobs. Since SQL Agent is not running, SQL Jobs are not supported.
One way to migrate these jobs are to refactor so that a worker role can kick off these tasks. The content of the job might be moved into a stored procedure to reduce re-architecture. The worker role could then be designed to wake up and run at the appropriate time and kick off the stored procedure.
Upvotes: 2
Reputation: 5513
I'd add in bandwidth considerations (for initial population and on-going bandwidth). This has cost and performance considerations.
Another potential consideration is any long running processes or large transactions that could be subject to SQL Azure's rather cryptic throttling techniques.
Upvotes: 2