Slightly OT - Addressable Data Sizes?

  • Thread starter Thread starter xeroxero
  • Start date Start date
X

xeroxero

Jet/MDB has a limit of 2gb per database. Visual FoxPro has a limit of
2gb per table. SQL Server has no size limit. Can anyone explain why
the first two databases have limits? Is there something related to
their ISAM nature that limits them?

Thanks.
 
Probably because they are so old that at the time the limit was set it was
thought that it is more than enough.
Just remember the 640Mb PC limit.
And probably it has to do with the way the data is stored - there are
probably some fixed length structures...
 
32-bit memory space. SQL Server does a bit of dancing to get around the size
limit by using pages and extents, etc.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com

*************************************************
Think outside of the box!
*************************************************
 
Each Jet Database is a single file. Each FoxPro table is a single file.
Until NTFS, the limit per file was 2Gb.

Mike Ober.

Miha Markic said:
Probably because they are so old that at the time the limit was set it was
thought that it is more than enough.
Just remember the 640Mb PC limit.
And probably it has to do with the way the data is stored - there are
probably some fixed length structures...

--
Miha Markic [MVP C#, INETA Country Leader for Slovenia]
RightHand .NET consulting & development www.rthand.com
Blog: http://cs.rthand.com/blogs/blog_with_righthand/

xeroxero said:
Jet/MDB has a limit of 2gb per database. Visual FoxPro has a limit of
2gb per table. SQL Server has no size limit. Can anyone explain why
the first two databases have limits? Is there something related to
their ISAM nature that limits them?

Thanks.
 
Some really good answers so far.
The real question is, why do you need so much space? Many very large
companies kept everything they had on much smaller databases... ;)

SQL Server Compact Edition is 4GB--perhaps this will be more suitable...

--
____________________________________
William (Bill) Vaughn
Author, Mentor, Consultant
Microsoft MVP
INETA Speaker
www.betav.com/blog/billva
www.betav.com
Please reply only to the newsgroup so that others can benefit.
This posting is provided "AS IS" with no warranties, and confers no rights.
__________________________________
Visit www.hitchhikerguides.net to get more information on my latest book:
Hitchhiker's Guide to Visual Studio and SQL Server (7th Edition)
Between now and Nov. 6th 2006 you can sign up for a substantial discount.
Look for the "Early Bird" discount checkbox on the registration form...
 
Back
Top