473,657 Members | 2,806 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Number of rows in a table

I'm developing a Access DB which will replace Quickbooks for about 60
customers. This involves about 36,000 - 40,000 trasaction per year.
Is there a limit to the number of records (rows) that a table can
include? Is this good practice? Anyone done something like this
before and how did it work?
Nov 12 '05 #1
3 11786
Unless you are proposing to include images or other external objects
(.xls, .doc file for example) in your data fields then you have no
problems.

Make sure you index any fields used for searching.

There is no limit on record numbers. Your mdb cannot be more than 2Gb for
A2000 onwards, although it's not a good idea to start out somewhere near
this limit. But I would hazard a guess that you'll be within 10Mb which
is no big deal.

Regards

Peter Russell


Meinia previously wrote:
I'm developing a Access DB which will replace Quickbooks for about 60
customers. This involves about 36,000 - 40,000 trasaction per year.
Is there a limit to the number of records (rows) that a table can
include? Is this good practice? Anyone done something like this
before and how did it work?


Nov 12 '05 #2
Just 2 more cents worth... and to confirm from first-hand experience

Built an app that grew and grew - to 440,000 plus Inventory
Transaction records yearly. Bill of Material record count 380,000
active on average. File Size runs in the 100MB neighbourhood

No issues - 6 years running, not a byte of data lost.
Front-end/Back-end with NIGHTLY network backups, typ 20+ users.

A couple of thoughts from the BTDT (Been-There-Done-That)School:
- Archive Annually, use a rolling 6 month active history for instant
access
- Really scrutinize the size of EVERY field as you build...
the effects on file size are quite amazing as time goes by
- Good Indexes on this huge Bill of Material Table continue
to be lightning fast
ie. Literally, you blink, and it's on display (100 Mbps Fiber LAN)
- Lastly, beware the naughty integer that you learned about...
this one crept up on me from an innocent, well-hidden, "early days" counter field
32,768 is not a happy place...

Have Fun!
Scott
I'm developing a Access DB which will replace Quickbooks for about 60
customers. This involves about 36,000 - 40,000 trasaction per year.
Is there a limit to the number of records (rows) that a table can
include? Is this good practice? Anyone done something like this
before and how did it work?


I've heard of databases here with upwards of 500,000. The only
problem with keeping lots of records in one table is that querying may
slow. So make sure you index properly.

Nov 12 '05 #3
sm*******@sympa tico.ca (Scott Mac) wrote in news:1a0934d4.0 310022033.77c51 9e6
@posting.google .com:
Really scrutinize the size of EVERY field as you build...
the effects on file size are quite amazing as time goes by


UhHuh!

--
Lyle
(for e-mail refer to http://ffdba.com/contacts.htm)
Nov 12 '05 #4

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

Similar topics

3
24098
by: Xizor | last post by:
Ok, what I want to do is find out the number of rows in a table. The most obvious solution is to do something like the following: $sql = "SELECT blah FROM blah WHERE 1"; $result = mysql_query($sql, $db); $num = mysql_num_rows($result); If you have a large table, to me that seems like it would be a system hog if all you want is the number of rows but not the data. I'm not sure if using mysql_unbuffered_query() would solve this, would...
2
4442
by: Neil Zanella | last post by:
Hello, I would like to know whether having a <table> element with two <tr> elements each containing one <td> elements and two <td> elements, respectively, is legal from the point of view of standard W3C HTML/XHTML. In particular, is it legal for table rows to contain differing number of columns, even when the colspan attribute is not used? Thanks,
6
1655
by: Shane Niebergall | last post by:
Hey all - I'm trying to implement a basic log in a table. Instead of writing to a text file on the server, I want to insert entries into a 'log' table. However, I want to limit this table to only have the last 500 rows or so. How do I do this? Here's my pseudocode, but it seems as if there would be a better way: logEntry($message){
1
35536
by: Roderik | last post by:
Hi, I have a table like this: <table id="myTable"> <tr><td>text</td><td>text</td></tr> <tr><td>text</td><td>text</td></tr> ... <tr><td>text</td><td>text</td></tr> </table>
7
12067
by: Egor Shipovalov | last post by:
I'm implementing paging through search results using cursors. Is there a better way to know total number of rows under a cursor than running a separate COUNT(*) query? I think PostgreSQL is bound to know this number after the first FETCH, isn't it? On a side note, why queries using LIMIT are SO terribly slow, compared to cursors and sometimes even ones without LIMIT? Shouldn't LIMIT be internally implemented using cursor mechanism then?...
12
3028
by: Martin Heuckeroth | last post by:
Hi Any idea on how to get a row number from the original table? We do a query and get a result. The row number from the result is different from the rownumber of the table the result originated from. I need the record number from the original tabel. How do you get THAT number? Please help, Regards, Martin
2
1477
by: Vadim | last post by:
Hi! I imported some table (about 1500 records) using "LOAD DATA LOCAL INFILE..." (command line console). No warnings, no skipped, no deletes - all the recored are written to be imported. However, in MySQL Administrator UI tool I see completely different number in the "Rows" column. Making a SELECT query shows that the actual number of records in the table is the correct one (the same number as in text file table). Command line SHOW TABLE...
6
4973
by: Ward Germonpré | last post by:
Hi, I have a reference to a dom table. How can I retrieve the number of columns in that table ? The stop value below doesn't work, nor did my experimenting with tbodies and childNodes.. .... var thistable = document.getElementById('resultaattbl'); for (var j=0, stop = thistable.tbody.rows.length; j<stop; j++) {
8
783
by: sqlservernewbie | last post by:
Hi Everyone, Here is a theoretical, and definition question for you. In databases, we have: Relation
3
12322
by: Michel Esber | last post by:
Hello, Environment: DB2 LUW v8 FP15 / Linux I have a table with 50+ Million rows. The table structure is basically (ID - Timestamp). I have two main applications - one inserting rows, and the other reading/deleting rows. The 'deleter' application runs a MIN/MAX (timestamp) for each ID and, if the difference between min/max is greater than 1h, it reads all
0
8316
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8737
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
8509
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
8610
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...
1
6174
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4168
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...
0
4327
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1967
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1730
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.