Access limits and corruption
What is the limit of Access database everyone has experienced?
Observation of various small projects based on MS Access Db at work, records above 200,000 or 50MB seems to be more prone to corruption.
what is the prudent limit (not the theoretical one) everyone keeps their access database within vis-a-vis record numbers?
Re: Access limits and corruption
hi, on a similar note... does anybody know the actual record limit when using autonumber?
is this in the billions? millions?
i ask because, if there is a limit, i would be using a text field, using 1-0 and a-z representing numbers, which would allow for 36^255 however tricky to implement while keeping speed up (due to duplication issues needing to be handled) and the last used id would be stored in one place that all places would be trying to access at once etc...
or is there a limit on records anyway, even without autonumber?
Re: Access limits and corruption
Here is a link with all the specs.
http://www.microsoft-accesssolutions...ifications.htm
Seems its a size limit and not a row number limit. ;)
Re: Access limits and corruption
Re: Access limits and corruption
:D
Although the size limits are unrealistic because it just get soooo slooow when it reaches a couple of hundred Mbs in size. I have one thats 636 Mbs with 6 tables, 3 of which have ~2 million rows each. It takes ages to open the table and I dont even want to take about doing a compact and repair on the db! We are talking ~ 1 hour! :eek:
Re: Access limits and corruption
woa, that's awhile. Hopefully you do not have to perform one very often.
however, databases intended for this size are typically not supposed to be opened in Access itself, not in table view anyway, you would never be able to pinpoint anything anyway :p
it comforts me to know that you have a table supporting 2mil's worth, sort of proves these rumours wrong (ones about access not being capable of large scale)
Re: Access limits and corruption
Well thats the misconception. Its total db size thats the limitation. It takes a combination of either a few very large tables or allot of db objects to reach the limits.
No, I dont have to do too much to that db only about once a month and the data gets imported via code but I need to do the C&R on it manually. :(
Re: Access limits and corruption
Quote:
Originally Posted by Phill64
it comforts me to know that you have a table supporting 2mil's worth, sort of proves these rumours wrong (ones about access not being capable of large scale)
In terms of acceptable production performance, those rumors are absolutely true. It is functionally useless to be able to store two million records if it takes two million years to search or gather a recordset based on a query.
Re: Access limits and corruption
MS SQL Server 100% :thumb: