Russell Waggoner
Russell Waggoner

Reputation: 7

What is the table record limit in Microsoft SQL Server 2008 R2?

I'm up to a little over 200,000 records in an error log table so I was just wondering. Thanks.

Upvotes: 0

Views: 795

Answers (2)

Alan
Alan

Reputation: 3042

These are some of the Maximum Capacity Specifications for SQL Server 2008 R2

  • Database size: 524,272 terabytes
  • Databases per instance of SQL Server: 32,767
  • Filegroups per database: 32,767
  • Files per database: 32,767
  • File size (data): 16 terabytes
  • File size (log): 2 terabytes
  • Rows per table: Limited by available storage
  • Tables per database: Limited by number of objects in a database

Duplicated from: this StackOverflow answer

Upvotes: 1

Michael D
Michael D

Reputation: 106

https://learn.microsoft.com/en-us/sql/sql-server/maximum-capacity-specifications-for-sql-server

Not really an answer, but I'd suggest looking at this documentation

Upvotes: 0

Related Questions