Give an simple sqlite3 table (create table data (key PRIMARY KEY,value)) with key size of 256 bytes and value size of 4096 bytes, what is the limit (ignoring disk space limits) on the maximum number of rows in this sqlite3 table? Are their limits associated with OS (win32, linux or Mac)
|
feedback
|
|
In SQLite3 the field size isn't fixed. The engine will commit as much space as needed for each cell. For the file limits see this SO question: | |||
|
feedback
|
|
Essentially no real limits see http://www.sqlite.org/limits.html for details | |||
feedback
|
|
The answer you want is right here. Each OS you mentioned supports multiple file system types. The actual limits will be per-filesystem, not per-OS. It's difficult to summarize the constraint matrix on SO, but while some file systems impose limits on file sizes, all major OS kernels today support a file system with extremely large files. The maximum page size of an sqlite3 db is quite large, 2^32768, although this requires some configuration. I presume an index must specify a page number but the result is likely to be that an OS or environment limit is reached first. | ||||
|
feedback
|
|
In July 2011 the sqlite3 limits page was updated to define the practical limits to this question based on the maximum size of the database which is 14 terabytes:
So with a max database size of 14 terabytes you'd be lucky to get ~1 Trillion rows since if you actually had a useful table with data in it the number of rows would be constrained by the size of the data. You could probably have up to 10s of billions of rows in a 14 TB database. | |||
|
feedback
|
|
No limits, but basically after a certain point the sqlite database will become useless. PostgreSQL is the top free database BY FAR for huge databases. In my case, it is about 1 million rows on my Linux 64-Bit Quad Core Dual Processor computer with 8GB RAM and Raptor hard disks. PostgreSQL is unbeatable, even by a tuned MySQL database. (Posted in 2011). | |||
|
feedback
|