Azure SQL Server 数据库价格
我注册了 Windows azure,并获得了一个 1GB 的数据库作为试用的一部分。所以我的最大大小是 1GB,一旦达到该大小,插入将开始失败,直到我将最大大小更新为 10GB。现在我的问题是,如果我现在将最大大小更新为 10GB,而我只使用 400MB,是否仍会按 1GB 的费率收费?我认为答案是肯定的,如果是的话,我为什么不将最大大小设置为 50GB,这样插入就不会失败?
I signed up for windows azure and I was given a 1gb database as part of my trial. So my max size is 1gb and once I reach that size inserts will start to fail until I update the max size to 10gb. Now my question is, if I update the max size now to 10gb and I only use 400mb, will I still be charged that the 1gb rate? I think the answer is yes and if it is they why don't i just set the max size at 50gb so an insert never fails?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有两个版本:网络版(1GB 和 5GB)和商业版(10GB 到 50GB,以 10GB 为增量)。如果您继续使用网络版并在任何一天超过 1GB 阈值,则将按当天的 5GB 费率收费。该费用按月每日摊销。因此,您完全有可能会因 1GB 速率而产生略多一点的费用(如果您升级到 5GB 网络版)。
转向商业版,最低级别为 10GB,因此这将是您的基准费率。同样,它每天摊销。
如果您想将网络版设置为 5GB(或将商业版设置为 50GB),您将避免插入失败,正如您所指出的。这些层级将在您尝试管理成本时为您提供帮助。
请参阅这篇 MSDN 博客文章,详细介绍了各层,以及有关 ALTER DATABASE 命令的信息。
There are two editions: Web (1GB and 5GB) and Business (10GB through 50GB in 10GB increments). If you stay with a Web edition and go over the 1GB threshold on any given day, you'll be charged at the 5GB rate for that day. This is amortized daily over the month. So it's entirely possible you'll accrue costs just a little bit over the 1GB rate (if you upgrade to the 5GB Web Edition).
Moving to the Business edition, the lowest tier is 10GB, so that would be your baseline rate. Again, it's amortized daily.
If you want to set Web edition to 5GB (or Business edition to 50GB), you're going to avoid insert fails, as you pointed out. The tiers are going to help you when trying to manage cost.
See this MSDN blog post detailing the tiers, along with information on the ALTER DATABASE command.