473,397 Members | 1,949 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,397 software developers and data experts.

Data Input Database Design Help

Hi

I have been tasked with converting my pulp and paper mills weekly
projected and actual contractor hrs excel spreadsheet into a an Access
97 database.

So far my design has been to use a form with a button for each to day
navigate the recordset of a single table using .findfirst and .nomatch
and I am worried about performance as I'm basically creating a flat
file.

I could explain the scenario but I think it will be easier to display
data

For: weekending 13/12/03
Planner: Jimmy Smith Business Area: Causticizing Plant

Day: Monday

Work Types
Maintenance Capital Production
Contractor Types

Electrical 2hrs 4hrs
Scaffolders
Fitters 1hrs 4hrs
Welders 8hrs
etc

This is repeated for Days Tuesday
,Wednesday,Thursday,Friday,Weekend,Week2,Week3,Wee k4 for the five
different business areas by the 5 different users on a weekly basis. I
think the weekending date is very important for grouping.

The problem is if I normalise the datastructure and use continuous
subforms to input the data it will be slower and complicated for users
to input data. Does anyone have any suggestions for a more logical
way of designing this database? If not does anyone know how to set a
form to display a recordset row after finding it using the seek
method? Ive got it working using bookmarks with findfirst but it
oesn't seem to work with seek which is a shame as I've read it's alot
faster.

Any advice would be much appreciated

Thankyou

Michael Black
Nov 12 '05 #1
2 2117
TC
Mike, just two respond to three points:
The problem is if I normalise the datastructure and use continuous subforms to input the data it will be slower and complicated for users to
input data.

No. Databases are totally different to spreadsheets. Producing a normalized
design, is a fundamental requirement for any competent database. This is
nothing to do with user interface issues. Once you have designed a properly
normalized database, you can then produce forms, subforms, reports etc. for
data entry, enquiry & reporting. It is the "flat file" approach that will
give you grief in the long run; not the "normalizing" approach.

Does anyone have any suggestions for a more logical way of designing this database?

Yes. Read:
http://support.microsoft.com/support...es/Q100139.ASP

If not does anyone know how to set a form to display a recordset row after finding it using the seek method?

Forget about user interface issues at this stage. They are really >>not
important<< (in 99.999% of cases) until your table design is correct. >Then<
design the user interface.

HTH,
TC
"Mike" <mb*********@hotmail.com> wrote in message
news:7a**************************@posting.google.c om... Hi

I have been tasked with converting my pulp and paper mills weekly
projected and actual contractor hrs excel spreadsheet into a an Access
97 database.

So far my design has been to use a form with a button for each to day
navigate the recordset of a single table using .findfirst and .nomatch
and I am worried about performance as I'm basically creating a flat
file.

I could explain the scenario but I think it will be easier to display
data

For: weekending 13/12/03
Planner: Jimmy Smith Business Area: Causticizing Plant

Day: Monday

Work Types
Maintenance Capital Production
Contractor Types

Electrical 2hrs 4hrs
Scaffolders
Fitters 1hrs 4hrs
Welders 8hrs
etc

This is repeated for Days Tuesday
,Wednesday,Thursday,Friday,Weekend,Week2,Week3,Wee k4 for the five
different business areas by the 5 different users on a weekly basis. I
think the weekending date is very important for grouping.

The problem is if I normalise the datastructure and use continuous
subforms to input the data it will be slower and complicated for users
to input data. Does anyone have any suggestions for a more logical
way of designing this database? If not does anyone know how to set a
form to display a recordset row after finding it using the seek
method? Ive got it working using bookmarks with findfirst but it
oesn't seem to work with seek which is a shame as I've read it's alot
faster.

Any advice would be much appreciated

Thankyou

Michael Black

Nov 12 '05 #2
I've build a small d/b using a 'query form' to handle the 'week
ending' (I use a date range', the planner id and business area id in
your example

a subform prompts for the other fields in your example

with pull downs for work type and contractor type.. minimal entry is
required

let me know if you're interested

mb*********@hotmail.com (Mike) wrote in message news:<7a**************************@posting.google. com>...
Hi

I have been tasked with converting my pulp and paper mills weekly
projected and actual contractor hrs excel spreadsheet into a an Access
97 database.

So far my design has been to use a form with a button for each to day
navigate the recordset of a single table using .findfirst and .nomatch
and I am worried about performance as I'm basically creating a flat
file.

I could explain the scenario but I think it will be easier to display
data

For: weekending 13/12/03
Planner: Jimmy Smith Business Area: Causticizing Plant

Day: Monday

Work Types
Maintenance Capital Production
Contractor Types

Electrical 2hrs 4hrs
Scaffolders
Fitters 1hrs 4hrs
Welders 8hrs
etc

This is repeated for Days Tuesday
,Wednesday,Thursday,Friday,Weekend,Week2,Week3,Wee k4 for the five
different business areas by the 5 different users on a weekly basis. I
think the weekending date is very important for grouping.

The problem is if I normalise the datastructure and use continuous
subforms to input the data it will be slower and complicated for users
to input data. Does anyone have any suggestions for a more logical
way of designing this database? If not does anyone know how to set a
form to display a recordset row after finding it using the seek
method? Ive got it working using bookmarks with findfirst but it
oesn't seem to work with seek which is a shame as I've read it's alot
faster.

Any advice would be much appreciated

Thankyou

Michael Black

Nov 12 '05 #3

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

Similar topics

4
by: Nomen Nescio | last post by:
can anyone be so kind as to look at http://www.mysolution.ws/HYPOCRITE.php and let me know why it isn't passing the form data to http://www.mysolution.ws/insertHYPOCRITES.php for the most...
2
by: Kingdom | last post by:
I have a SelectBoxes.asp page that is working with multiple selection dropdown boxes to extract data and total the selection prices. Tom & Bob were kind enough to give me a big help getting this...
16
by: D Witherspoon | last post by:
I am developing a Windows Forms application in VB.NET that will use .NET remoting to access the data tier classes. A very simple way I have come up with is by creating typed (.xsd) datasets. For...
6
by: cleveralex1212 | last post by:
Sorry to disturb. I'm truly a beginner in C++ and my knowledge of it is really not much. I've been facing a serious problem during these few days. Let me describe my situation as clearly as I can...
4
by: intl04 | last post by:
How do I create a data input form in Access that is external to the Access database to which it's connected (if that's possible, which I believe it is)? For example, if someone clicks on an Access...
0
by: Mark Eden | last post by:
I havent done any Access database design since doing A-Levels at college, that was 5 to 6 years ago. Now i have to design one for work and I have hit problems. Basically my database has a number...
2
by: Francis Debrabandere | last post by:
Hi all, I'm a beginner in ms access, and I'm working on my first real application. But to finish it up I'm facing a problem. I'm not able to solve and maybe someone can help me. I have made a...
9
by: sellcraig | last post by:
Microsoft access 2 tables table "data main" contains a field called "code" table "ddw1" is created from a make table query of "data main" Goal- the data in "code" field in needs to...
12
lifeisgreat20009
by: lifeisgreat20009 | last post by:
I am a newbie to Struts and JSP...I have been working on the code below for 5 hours now..I googled a lot but couldn't get much help so finally I am here.. Hoping of getting my problem solved. Please...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
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...
0
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,...
0
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...
0
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...
0
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
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...

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.