Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Oracle 8i row size limitation

Status
Not open for further replies.

GT98SVO

Programmer
Jan 10, 2001
25
US
Is there some information on the size limitations on Oracle tables/views? Row size and count?

Much thanks!
 
The size and number of rows is essentially unlimited. Oracle can store extremely long rows in overflow segments. That's unlike a database like SQL Server, which has to have an entire row fit on an 8k page. Similarly there is no real limit on the number of rows in a table. You can store as many rows as you have disk space available. There is undoubtedly some theoretical limit, probably based on the maximum number of rowids, but I've never heard of a real table coming close to this limit.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top