SQL Server 中数据库数量的实际限制?

Practical limit for the number of databases in SQL Server?(SQL Server 中数据库数量的实际限制?)
本文介绍了SQL Server 中数据库数量的实际限制?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

在其中一个 stackoverflow 播客(我认为是 #18)中,Jeff 和 Joel 正在谈论多租户数据库与单租户数据库.Joel 提到FogBugz on Demand"针对每个客户架构使用了一个数据库,我想知道是否还有一个点需要多个数据库服务器来分配负载?

In one of the stackoverflow podcasts (#18 I think) Jeff and Joel were talking about multi vs single tenant databases. Joel mentioned that "FogBugz on Demand" used a database per customer architecture and I was wondering if there is a point beyond which you'll need to have multiple database servers to distribute the load?

推荐答案

从技术上讲,SQL Server 中每个实例的数据库数限制是 32,767,但我怀疑您是否可以使用具有 2,000 个以上数据库的 SQL Server 实例,那时点服务器可能没有响应.

Technically the limit of databases per instance in SQL Server is 32,767, but I doubt that you could use a SQL Server instance that has more than 2,000 databases, at that point the server would probably be not responsive.

如果所有数据库都自动关闭且未被使用,您可能拥有近 30,000 个数据库.您可以在此处找到有关容量限制的更多信息:

You may be able to have close to 30,000 databases if they were all auto-closed and not being used. you can find more information about capacity limits here:

SQL Server 的最大容量规范

这篇关于SQL Server 中数据库数量的实际限制?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Search for quot;whole word matchquot; in MySQL(搜索“全字匹配在 MySQL 中)
MySQL - Conditional Foreign Key Constraints(MySQL - 条件外键约束)
How to pivot a MySQL entity-attribute-value schema(如何透视 MySQL 实体-属性-值模式)
Cast from VARCHAR to INT - MySQL(从 VARCHAR 转换为 INT - MySQL)
Does SQL Server Offer Anything Like MySQL#39;s ON DUPLICATE KEY UPDATE(SQL Server 是否提供类似于 MySQL 的 ON DUPLICATE KEY UPDATE 之类的东西)
MySQL find_in_set with multiple search string(具有多个搜索字符串的 MySQL find_in_set)