What's the maximum number of rows a single SQL Server table can store?

后端 未结 2 1750
忘掉有多难
忘掉有多难 2020-12-20 17:59

How many rows can we place in a single SQL Server table?

2条回答
  •  情深已故
    2020-12-20 18:29

    There is no limit, except maybe for your hard drive size.

    Have a look at Estimating the Size of a Table

    and Maximum Capacity Specifications for SQL Server : Rows per table

    Tables per database : Limited by number of objects in a database

    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.

提交回复
热议问题