I have a backup file (.bacpac) of an azure database. I'd like to replace the existing azure database with that backup. What is the recommended procedure:
- importing the backup into a new database and rename the database to the old one?
- using SSMS T-SQL: "Restore database [db] from [url] with credential=[..]" ?
How can I ensure that the user is not/minimal affected by the restoring procedure? Can I set the database to be replaced in any kind of offline mode?