473,750 Members | 2,648 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Overcoming Access size limitation possibilities?

Hi,

Is there a "way around" the size limitation for Access? I'm thinking
of something like spanning a huge table accross multiple databases...

Something simple and that would preserve the integrity of the DB yet
let me overcome the size limitation.

Is there any best practice or technique?

Thanks,

Lee G.
Jun 27 '08 #1
4 2550
leegold58 wrote:
Hi,

Is there a "way around" the size limitation for Access? I'm thinking
of something like spanning a huge table accross multiple databases...

Something simple and that would preserve the integrity of the DB yet
let me overcome the size limitation.

Is there any best practice or technique?

Thanks,

Lee G.
Exactly what size limitation do you want to overcome?
How big do you need?

Bob
Jun 27 '08 #2
I think if you reached the limits of ms-access, then you should consider
moving the data part to sql server, and continue to use ms-access as the
front end....

I don't recommend a workaround at all.

You don't mention how large, or how many records you have now. So, how many
records do you have now, and how large is your database now? (after a
compact and repair of course!).

The size limit of access 2002 is 2 gigs.

So, if you take a average name in a mailing list, add a few extra
fields...your record size might be about 120 characters on average in size.

So, the number of records you can store is:

2 gig = 2,147,483,648 Bytes
1 Character = 1 Byte
120 Characters = 120 Bytes

2 gig / 120 = 32 million records

Of course, if each customer name only takes up 60 characters...th en you can
store 64 million records in the file.

In real terms, I don't think anyone
would store close to the actual limits of the file size for ms-access.

So, it really all relative, and you not mentioned how many reords you have
now.
However, a table with 100,000 records in ms-access is rather small...
--
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada
pl************* ****@msn.com
Jun 27 '08 #3
"leegold58" <go******@world post.comwrote in message
news:30******** *************** ***********@s50 g2000hsb.google groups.com...
Hi,

Is there a "way around" the size limitation for Access? I'm thinking
of something like spanning a huge table accross multiple databases...

Something simple and that would preserve the integrity of the DB yet
let me overcome the size limitation.

Is there any best practice or technique?
Well IMO a requirement for a "huge table" set alarms ringing wrt the basic
design. Is the data properly normalised and stored in a relational
configuration? If the answer is yes and the tables are still huge then I'd
be thinking about a more capable host eg Oracle.

Regards,
Keith.
www.keithwilby.com

Jun 27 '08 #4
What you want is called partitioning as long as the partitions reside in the
same database. Jet and ACE don't support partitioned tables.

You can't enforce referential integrity on tables that are stored in
different databases. That goes for any database system, not just Access. If
your data exceeds 2 GB, upgrade to SQL Server or Oracle. They have free
versions that store up to 4 GB of data. If you need to store more than that,
purchase an enterprise level database system.

Chris
Microsoft MVP
leegold58 wrote:
>Hi,

Is there a "way around" the size limitation for Access? I'm thinking
of something like spanning a huge table accross multiple databases...

Something simple and that would preserve the integrity of the DB yet
let me overcome the size limitation.

Is there any best practice or technique?

Thanks,

Lee G.
--
Message posted via http://www.accessmonster.com

Jun 27 '08 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1817
by: Anurag | last post by:
This simple one beats me all ends up(sincerely). I have been doing DB2 UDB for some time now, reading a lot of good discussions in this forum, writing some answers, asking a lot more but this simple question has floored me completely. Either I pretend that I know or I could let the kowledgable ones pass on some wisdom to me :-) When we say that: (1) "CLP in Db2 V8.2 still imposes a limit of 64K on the stored proc size;
2
3160
by: terpatwork | last post by:
Hi, (1) I have an access form that allows users to enter data, and when they click a button, the OnClick code that I've written uses a SQL INSERT statement to insert the data into the database. I come from a web programming background, so please forgive me if there is some better approach to use in Access to accomplish this. My problem is that when users type in more than 512 characters (in a Memo field) and click the button, only the...
35
3224
by: deko | last post by:
Do I get more scalability if I split my database? The way I calculate things now, I'll be lucky to get 100,000 records in my Access 2003 mdb. Here some math: Max mdb/mde size = 2000 x 1024 = 2,048,000k Let's say on average each record in the database consumes 15k 2,048,000/15 = 136,533 records
33
5952
by: Uwe Range | last post by:
Hi to all! A customer of mine told me some days ago that her IT-people told her ACCESS would not be such a good idea for continuing with our project, because Access will not be continued in the future. I haven't heard of this. Does anybody know more about it? The IT-People usually prefer Oracle. If they really want to go in this direction, could our Access-application (if continued) be used as a front end with an Oracle back end? Does...
2
1386
by: ral amo | last post by:
We've a project for which we are using MS Access as the back end and VB as front end. there are three terminals fromn whichusers access the system. The table has 17 rows. When the number of records reach 12000 the system hangs. Does anybody know what's the reason for this?Is table size or database size is a limitation of MS ACeess. Pls help. It's very urgent.
6
2710
by: AB | last post by:
Hello all, I heard once that there is a limitation on the number of lines of code that a program can have when using C, but not for C++. Is this true? Any ideas?
4
2102
by: jmarc | last post by:
Is that right.. under Win 98.. The quantity of records in a table is limited to 65535..? Argument is a 'long' was supported by only 32 bits under Win 98...! Who may talk a bit more about this..
2
2983
by: fdcm | last post by:
Hi, I am new to Access 2003 on XP. I am creating a database from a current report that has exceeded Excel 2003's row limitation. My concern is running into an Access limitation after creating the database. I have read the post entitled "How to overcome the size limitation of MSAccess" and it was very helpful. However, is there a definitive answer as to how many records a 2GB database can hold? or is it dependent upon the record size (2 fields...
0
9583
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9396
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9342
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9256
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6081
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4716
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3323
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2807
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2226
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.