Practical limit for the number of databases in SQL Server?

后端 未结 5 777
伪装坚强ぢ
伪装坚强ぢ 2021-02-07 06:57

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 p

5条回答
  •  生来不讨喜
    2021-02-07 07:23

    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.

    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:

    Maximum Capacity Specifications for SQL Server

提交回复
热议问题