Reputation: 5689
I have Azure SQL database. Before updating it (schema) as part of a dev ops pipeline, I'd like to take a snapshot so should the worst happen I can roll back.
Imagine my dismay when I discovered that snapshots aren't available for Azure SQL database.
What's the best practice here?
Upvotes: 2
Views: 1671
Reputation: 4501
The moral equivalent you can do in SQL Azure is:
This avoids the time to do a PITR restore (but you pay for the extra database for the duration it is alive).
Upvotes: 1