My database is nearly finished!!! Looking for a few answers 8)

ogg13

Registered User.
Local time
Yesterday, 22:54
Joined
Jan 30, 2007
Messages
49
Im nearly finished creating my first real production database, its pretty exciting! Theres a few things that I need to accomplish to consider it 100% working and im wondering if anyone has any input on the following matters:

1) Users import their data via an excel spreadsheet. Its all done behind the scenes. One routine pulls in information about servers from an excel spreadsheet and after formatting it via queries, puts it in the main table. The spreadsheet in question starts with the servername cell. On the spreadsheet, the first row contains the name of the server, but the second and subsequent rows contain blank space in the servername column, but imply that the rest of the information is for the various connections associated with that server listed above... IE:

Column "ServerName"
Row1: Server1 IP address Switch Etc
Row2: <blank> IP address Switch Etc
Row3: Server2 IP address Switch Etc
Row4: <blank> IP address Switch Etc
Row5: <blank> IP address Switch Etc
Row6: Server3 IP address Switch Etc
and so on and so on...

What im wondering, is if its possible to fill in the blank spots with the cell above the records that start blank? (to populate the record with its respective server). Any input on methods to accomplish this would be appreciated.

2) Is there a way to attach code to the different buttons on the record selector? For tracking purposes, everything that my users do is stored in a seperate table. The only thing I cant seem to track is when users enter a record via the main data entry form. Automated tasks are no problem, but I cant seem to find a method to attach code to, say, the next record button on the default record selector.

3) I have a few queries that collectively import data from excel. When I do this, I remove confirmation messages so that users dont have to click through a sea of 'OK's. Im wondering if theres a way to count how many records get pulled in from an import, seperate which were good and which were bad, and simply pop up a message box stating that X records were imported succesfully, and X were not due to whatever reason.

4) Is there a way to sort text as if it were a number? I have a few fields that need to be text format, but contain numbers most of the time. The sorts always put 1 above 10, 9, 8, 7, etc, and id like to either find a way to make a query that changes all single digit numbers to double digit numbers or simply sort it in a numerical format.

5) What considerations should I take into account when it comes to the amount of data that access 2003 databases can effectively store and use? Ive heard that access can effectively handle 32000 records or something to that effect. Over that, what will I be dealing with? Slow performance? A complete roadblock?

I realize that there are a lot of questions here, and by no means wish to have my work done for me. Id very greatly appreciate any feedback that anyone wishes to give 8) Even if you dont want to code routines for me, thats fine.. I actually enjoy figuring this stuff out on my own, and a simple nudge in the right direction would suffice.

Thank you so very much!
 
Last edited:
This should answer no 5 But The main chart screen on this app has a lot of work to do and did slow to about 1-2 for it's automated checking and last weeks entry importing and that was with 1 Million entrys in the charts table which is well indexed I converted the datafiles to replicas and now with 1.7Million entrys I can do all the checking and retrive last weeks record for the position given in less that half a second.

This is not a multi user system but the datafiles have been on a server which only effected it slightly and I am about to get a new server and will be converting it to SQL server before I run out of mdb space IE 1Gb for a table the charts table will hit that at around 3 million 12-24 Month time

My stats for my music system as of a month or so ago (Access can handle it IF IT'S DESIGNED Correctly IE Indexing, relationships, table design ACT)

post-13-1169257731.jpg
 
Last edited:
Cool! Thanks for the input!
 

Users who are viewing this thread

Back
Top Bottom