0

I have been researching how many different tables and schemas I can put into a single sql server database, but I keep running into the following phrase:

Limited by number of objects in a database

But when I research the max number of objects in a database, I am unable to find a clear definition of this limitation.

Any ideas?

Nathan Tregillus
  • 6,006
  • 3
  • 52
  • 91

1 Answers1

6

A fine note at the bottom of this page:

3 - Database objects include objects such as tables, views, stored procedures, user-defined functions, triggers, rules, defaults, and constraints. The sum of the number of all objects in a database cannot exceed 2,147,483,647.

So 2^31 - 1 it is.

Code Different
  • 90,614
  • 16
  • 144
  • 163