473,779 Members | 2,083 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

New to Access

I work in the parts department of a new car dealership. We ar
frequently asked by customers for fluid capacities and types of thei
vehicles. Unfortunately this information is not in our parts catalog
so we must obtain the information from service manuals in the servic
department. I had the bright idea to gather this information and pu
it in a database, so I purchased Access. I have studied som
information regarding relational databases and I have a
understanding on relationships, however I just don't know how to pu
it to practice. For example, a 2005 Explorer has more than on
engine choice, transmission choice, front and rear axle choice etc.
Also these different engine, transmissions, etc. may fit differen
years and models. Would this constitute a many to many relationship
What key field would I use to gather all the related informatio
together? I like to create a form that would gather the year, mak
and model from a user and display all the fluid capacity and type
for that vehicle. Any help on getting me started in the righ
direction would be greatly appreciated

Nov 13 '05 #1
21 1886
brink wrote:
I work in the parts department of a new car dealership. We are
frequently asked by customers for fluid capacities and types of their
vehicles. Unfortunately this information is not in our parts catalog, so we must obtain the information from service manuals in the service
department. I had the bright idea to gather this information and put
it in a database, so I purchased Access. I have studied some
information regarding relational databases and I have an
understanding on relationships, however I just don't know how to put
it to practice. For example, a 2005 Explorer has more than one
engine choice, transmission choice, front and rear axle choice etc.
Also these different engine, transmissions, etc. may fit different
years and models. Would this constitute a many to many relationship?
What key field would I use to gather all the related information
together? I like to create a form that would gather the year, make
and model from a user and display all the fluid capacity and types
for that vehicle. Any help on getting me started in the right
direction would be greatly appreciated.


Strasser replies:
This will be a good "thread" for anyone NEW to relational database
design who wants to use Access to create the database FROM SCRATCH.
I am a teacher so the discussion will differ from the normal short
answer format.
Brink, you have stated as the database objective that you want to be
able to input automobile:
1) year
2) make
3) model of the car
and display all the
4) fluid capacities for different types of fluids

QUESTION:
By fluid "types" do you mean:
oil
brake
automatic transmission (or manual transmission)
coolant capacity
These kinds of "types"?
Please answer this question.

First step in design of a new database
It is important to know what you want OUT of the database.
Is the above accurate?
What format do you want the information in?
(sounds like a screen display of a form showing fluid capacities
of the different fluid types, so you can answer the customer when they
ask for types and fluid capacities for their cars)

Please answer my question about "types".
If anyone else is going to follow this general database design
discussion, please "reply" so we know others are following along the
discussion.

Brink, I'll look for your answer. Strasser

Nov 13 '05 #2
Brink,
Parts made up of parts, is that pretty much what you need to remember? What
parts made up which other part? If a customer bought a 2004 Ford Explorer
with the 4.6 Litre modular V-8 it gets 7 quarts of 20W-50 because that
engine with the trailer package came with a larger oil cooler, for example?
Pretty much the basic design is a bill of materials. You only need a simple
bill of materials so probably it's one finished vehicle has some parts that
went into making it--or a one-to-many relationship. Fluids would be treated
as parts in this example. So, you only need one table listing all the
relevent parts. In one of the columns of that table will be a PART_NO that
uniquely identifies that part. In a second column will be BELONGS_TO which
contains the part number of the part that this part belongs to. The rest is
whatever attributes of a part you need for your purpose. Unit of measure
and units needed are probably two additional columns.
So, for example:
PART_MASTER_TBL
PART_NO Text(15) Primary Key
NAME Text(50)
DESC Text(255)
UOM Text(15) Foreign Key UOM_LKP On UOM_LKP.UOM_COD E Text(15)
UNITS_NEEDED Single
COMPONENT_OF Text(15) Foreign Key PART_MASTER_TBL On
PART_MASTER_TBL .PART_NO

The description above should give you an idea. It's not completely legal
ANSI SQL so it won't make a table without some work. But the ideas are
there.
Nov 13 '05 #3
That said... read this...

http://www.mvps.org/access/modules/mdl0027.htm

Nov 13 '05 #4
Pietlinden,
Cool.

<pi********@hot mail.com> wrote in message
news:11******** **************@ z14g2000cwz.goo glegroups.com.. .
That said... read this...

http://www.mvps.org/access/modules/mdl0027.htm

Nov 13 '05 #5
ng
1) You bought the right tool to do the job.
2) It doesn't sound like you have the technical knowledge of relational
databases to do this project and make it run like the fererri It should be.

-BrianDP

"brink" <br***@mygalaxy express-dot-com.no-spam.invalid> wrote in message
news:2a******** ************@gi ganews.com...
I work in the parts department of a new car dealership. We are
frequently asked by customers for fluid capacities and types of their
vehicles. Unfortunately this information is not in our parts catalog,
so we must obtain the information from service manuals in the service
department. I had the bright idea to gather this information and put
it in a database, so I purchased Access. I have studied some
information regarding relational databases and I have an
understanding on relationships, however I just don't know how to put
it to practice. For example, a 2005 Explorer has more than one
engine choice, transmission choice, front and rear axle choice etc.
Also these different engine, transmissions, etc. may fit different
years and models. Would this constitute a many to many relationship?
What key field would I use to gather all the related information
together? I like to create a form that would gather the year, make
and model from a user and display all the fluid capacity and types
for that vehicle. Any help on getting me started in the right
direction would be greatly appreciated.

Nov 13 '05 #6
Brian,
Access isn't really for folks that studied databases and programming in
college. On the cheap, PostgreSQL & a decent open source Java IDE like
Eclipse are probably better. If there is money to spend, either something
like Oracle or Ingres or SQL Server and a full version of Microsoft's VB.Net
or C# are also good. Access is exactly the right tool for a user like the
original poster. He can put something together in a relatively short period
of time that will help if he has a decent understanding of Excel. Things
really start to get fun when the project takes on a life of its own and he
finds himself having to invest more of his time in learning programming &
databases so he can build something that lives up to his original dream.

--
Alan Webb
kn*******@SPAMh otmail.com
"It's not IT, it's IS
"ng" <ng@ng.com> wrote in message news:4y_1e.3438 6$oa6.8454@trnd dc07...
1) You bought the right tool to do the job.
2) It doesn't sound like you have the technical knowledge of relational
databases to do this project and make it run like the fererri It should
be.

-BrianDP

"brink" <br***@mygalaxy express-dot-com.no-spam.invalid> wrote in message
news:2a******** ************@gi ganews.com...
I work in the parts department of a new car dealership. We are
frequently asked by customers for fluid capacities and types of their
vehicles. Unfortunately this information is not in our parts catalog,
so we must obtain the information from service manuals in the service
department. I had the bright idea to gather this information and put
it in a database, so I purchased Access. I have studied some
information regarding relational databases and I have an
understanding on relationships, however I just don't know how to put
it to practice. For example, a 2005 Explorer has more than one
engine choice, transmission choice, front and rear axle choice etc.
Also these different engine, transmissions, etc. may fit different
years and models. Would this constitute a many to many relationship?
What key field would I use to gather all the related information
together? I like to create a form that would gather the year, make
and model from a user and display all the fluid capacity and types
for that vehicle. Any help on getting me started in the right
direction would be greatly appreciated.


Nov 13 '05 #7
Strasser, the types of fluid for instance would be oil weights lik
5W20 or 5W30 for engines. Mercon 3 or Mercon 5 fluid types fo
transmissions. Green, orange, gold colored antifreezes for coolan
types etc..

Nov 13 '05 #8
"Alan Webb" wrote
Access isn't really for folks that
studied databases and programming in
college.
Access is (really) for the professional as well as the end user. (I suspect
I qualify, as I've been earning my living as a professional programmer and
developer since 1958.)
On the cheap, PostgreSQL & a decent
open source Java IDE like Eclipse are
probably better.
Better for _what_? Not better for the clients who hired me to create "normal
business database applications" quickly and inexpensively. Better, perhaps,
for some situations -- in your studies "of databases and programming in
college", did no one ever mention using "appropriat e technologies"? It's
quite possible that some "in the lofty halls of academe" would not because
of their lack of practical experience.
If there is money to spend, either something
like Oracle or Ingres or SQL Server and a
full version of Microsoft's VB.Net or C# are
also good.
Anyone who'd use .NET instead of Access to create the UI for individual
applications or small-to-modest-sized multiuser or client-server
applications, at this point in the .NET product lifecycle, clearly needs
"profession al help" for his/her masochistic tendencies.

Larry Linson
Microsoft Access MVP
Access is exactly the right tool for a user like the original poster. He can put something together in a relatively short period of time that will help if he has a decent understanding of Excel.
Things really start to get fun when the project takes on a life of its own and he finds himself having to invest more of his time in learning programming &
databases so he can build something that lives up to his original dream.

--
Alan Webb
kn*******@SPAMh otmail.com
"It's not IT, it's IS
"ng" <ng@ng.com> wrote in message news:4y_1e.3438 6$oa6.8454@trnd dc07...
1) You bought the right tool to do the job.
2) It doesn't sound like you have the technical knowledge of relational
databases to do this project and make it run like the fererri It should
be.

-BrianDP

"brink" <br***@mygalaxy express-dot-com.no-spam.invalid> wrote in message
news:2a******** ************@gi ganews.com...
I work in the parts department of a new car dealership. We are
frequently asked by customers for fluid capacities and types of their
vehicles. Unfortunately this information is not in our parts catalog,
so we must obtain the information from service manuals in the service
department. I had the bright idea to gather this information and put
it in a database, so I purchased Access. I have studied some
information regarding relational databases and I have an
understanding on relationships, however I just don't know how to put
it to practice. For example, a 2005 Explorer has more than one
engine choice, transmission choice, front and rear axle choice etc.
Also these different engine, transmissions, etc. may fit different
years and models. Would this constitute a many to many relationship?
What key field would I use to gather all the related information
together? I like to create a form that would gather the year, make
and model from a user and display all the fluid capacity and types
for that vehicle. Any help on getting me started in the right
direction would be greatly appreciated.



Nov 13 '05 #9
rkc
Alan Webb wrote:
Brink,
Parts made up of parts, is that pretty much what you need to remember? What
parts made up which other part? If a customer bought a 2004 Ford Explorer
with the 4.6 Litre modular V-8 it gets 7 quarts of 20W-50 because that
engine with the trailer package came with a larger oil cooler, for example?
Pretty much the basic design is a bill of materials. You only need a simple
bill of materials so probably it's one finished vehicle has some parts that
went into making it--or a one-to-many relationship. Fluids would be treated
as parts in this example. So, you only need one table listing all the
relevent parts. In one of the columns of that table will be a PART_NO that
uniquely identifies that part. In a second column will be BELONGS_TO which
contains the part number of the part that this part belongs to. The rest is
whatever attributes of a part you need for your purpose. Unit of measure
and units needed are probably two additional columns.
So, for example:
PART_MASTER_TBL
PART_NO Text(15) Primary Key
NAME Text(50)
DESC Text(255)
UOM Text(15) Foreign Key UOM_LKP On UOM_LKP.UOM_COD E Text(15)
UNITS_NEEDED Single
COMPONENT_OF Text(15) Foreign Key PART_MASTER_TBL On
PART_MASTER_TBL .PART_NO


How do you relate the 2004 Ford Explorer to the 4.6 Litre modular V-8
with a larger oil cooler using that table structure?

How about the 2003 Ford Explorer?

Nov 13 '05 #10

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

Similar topics

63
5934
by: Jerome | last post by:
Hi, I'm a bit confused ... when would I rather write an database application using MS Access and Visual Basic and when (and why) would I rather write it using Visual Studio .Net? Is it as easy in Visual Studio to create reports and labels as it's in Access?` The advantage of VS.net is that not every user needs Access, right? And that would eliminate the Access version problem as well I guess.
13
2953
by: bill | last post by:
I am trying to convince a client that dotNet is preferable to an Access project (ADP/ADE). This client currently has a large, pure Access MDB solution with 30+ users, which needs to be upgraded. I believe a dotNet solution is better, but I'm trying to be as convincing as possible -- and maybe I'm wrong! I would appreciate any input or references which could help me.
1
4344
by: Dave | last post by:
Hello NG, Regarding access-declarations and member using-declarations as used to change the access level of an inherited base member... Two things need to be considered when determining an inherited base member's access level in the derived class: its access level in the base class and the type of inheritance (public, protected, or private). After this determination is made, the following possibilities exist for manually changing the...
13
13357
by: Simon Bailey | last post by:
I am a newcomer to databases and am not sure which DBMS to use. I have a very simplified knowledge of databases overall. I would very much appreciate a (simplifed) message explaining the advantages and disadvantages of both programs. Many Thanks Simon
0
2980
by: Frederick Noronha \(FN\) | last post by:
---------- Forwarded message ---------- Solutions to Everyday User Interface and Programming Problems O'Reilly Releases "Access Cookbook, Second Edition" Sebastopol, CA--Neither reference book nor tutorial, "Access Cookbook, Second Edition" (O'Reilly, US $49.95), by Ken Getz, Paul Litwin, and Andy Baron, delivers hundreds of practical examples, up-to-date suggestions, and handy solutions to real-world problems that Access users and...
20
3347
by: Olav.NET | last post by:
I am a .NET/C++ developer who is supposed to do some work with Access. I do not know much about it except for the DB part. Questions: *1* I am looking for INTENSIVE books to get quickly up to speed. I like books with practical exercises, and also with test questions (like cert books) *2*
64
5260
by: John | last post by:
Hi What future does access have after the release of vs 2005/sql 2005? MS doesn't seem to have done anything major with access lately and presumably hoping that everyone migrates to vs/sql. Any comments? Thanks
1
3347
by: com | last post by:
Extreme Web Reports 2005 - Soft30.com The wizard scans the specified MS Access database and records information such as report names, parameters and subqueries. ... www.soft30.com/download-1-11975.htm - 31k - Cached - Similar pages MDBSecure 1.0.8.0 - Soft30.com Utility which makes it easy to create secure MS Access Databases, ... MS Access 2000/2003 format. 30 day money back guarantee, 30 day trial. ...
17
4417
by: Mell via AccessMonster.com | last post by:
Is there a way to find out where an application was created from? i.e. - work or home i.e. - if application sits on a (work) server/network, the IT people know the application is sitting there, but is there a way they can find out if that application was put there from a CD or email or created at work? Hint: It's not on a client/server database, just native jet database mdb created on Access 2003 (default 2000)...
37
5245
by: jasmith | last post by:
How will Access fair in a year? Two years? .... The new version of Access seems to service non programmers as a wizard interface to quickly create databases via a fancy wizard. Furthermore, why would you even continue to use Access as a backend when you have a much superior option in SQL express? What about as a future front-end development tool? Let's get serious. Microsoft continues to publish numerous articles and videos on how you...
0
9474
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,...
1
10075
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
8961
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7485
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
6727
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
5373
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
5504
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3632
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2869
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.