Azure SQL: What is the cost of running a specific SQL query like create database as copy

梦想的初衷 提交于 2019-12-11 15:31:44

问题


What are the costs of running the following operation in Azure?

drop database MyDB;
create database MyDB as copy of MyDB_Clean;

The scope of the above operation is to restore an existing database to its clean version to improve web site performance.

It will run once every day via an Azure web job and would like to assess if this would be feasible in terms of costs.

MyDB_Clean used space = 35 MB, allocated space 48 MB, using Tiers S0/S1/S2


回答1:


What are the costs of running the following operation in Azure?

Just the cost for the two databases, and if they fit in a single Elastic Pool, there would be no additional cost. See the Pricing Page for the different pricing models.



来源:https://stackoverflow.com/questions/54460615/azure-sql-what-is-the-cost-of-running-a-specific-sql-query-like-create-database

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!