473,796 Members | 2,654 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

N00bie to access and need help with reusing data between tables andimplementing it.

Hi,

I'm currently designing a database for a construction co and learning
how to use access on the fly. I'm having a few problems with the re-
use of data if I link tables using relationships and enter the data
into one table it doesn't seem to show the data in the other table
which its linked to.

Example of Table setups

Table 1
ID
Job No
Project Name
Address
Phone
Fax
Sub Constractor Name
Date
Daily Date
Foreman
Client Contact
Contract Value

Table 2
MemoID
Reference
Details
Job No
Response
FCID
Client Contact
Reason for Sending
Date
Time
Date of Notification
Options
Project Name
Superintendent

Table 1 Job No is linked to Table 2 Job No and that displays since its
a drop down box link to table 1, however Project Name and Client
Contact from Table 1 is link to Table 2 Project Name and Client Contac
but the information doesn't flow into Table 2. I'm assuming that since
these tables are linked that information should auto flow from table1
to table2 but I must be wrong since it doesn't so can someone point me
in the right direction as to what i should do?

Dec 19 '07 #1
4 1417
On Dec 18, 6:37 pm, christopher.cat ...@gmail.com wrote:
Hi,

I'm currently designing a database for a construction co and learning
how to use access on the fly. I'm having a few problems with the re-
use of data if I link tables using relationships and enter the data
into one table it doesn't seem to show the data in the other table
which its linked to.

Example of Table setups

Table 1
ID
Job No
Project Name
Address
Phone
Fax
Sub Constractor Name
Date
Daily Date
Foreman
Client Contact
Contract Value

Table 2
MemoID
Reference
Details
Job No
Response
FCID
Client Contact
Reason for Sending
Date
Time
Date of Notification
Options
Project Name
Superintendent

Table 1 Job No is linked to Table 2 Job No and that displays since its
a drop down box link to table 1, however Project Name and Client
Contact from Table 1 is link to Table 2 Project Name and Client Contac
but the information doesn't flow into Table 2. I'm assuming that since
these tables are linked that information should auto flow from table1
to table2 but I must be wrong since it doesn't so can someone point me
in the right direction as to what i should do?
Hi Christopher,
I think you have the wrong idea about tables in access. It is an easy
enough mistake, especially when you are learning on the fly. You will
want to take the duplicated information and either pick one table to
have it in and define a relationship or create a new table and relate
all three. I have some time and experience defining tables if you want
to get a hand.

Bill
Dec 19 '07 #2
On Dec 18, 6:37 pm, christopher.cat ...@gmail.com wrote:
Hi,

I'm currently designing a database for a construction co and learning
how to use access on the fly. I'm having a few problems with the re-
use of data if I link tables using relationships and enter the data
into one table it doesn't seem to show the data in the other table
which its linked to.

Example of Table setups

Table 1
ID
Job No
Project Name
Address
Phone
Fax
Sub Constractor Name
Date
Daily Date
Foreman
Client Contact
Contract Value

Table 2
MemoID
Reference
Details
Job No
Response
FCID
Client Contact
Reason for Sending
Date
Time
Date of Notification
Options
Project Name
Superintendent

Table 1 Job No is linked to Table 2 Job No and that displays since its
a drop down box link to table 1, however Project Name and Client
Contact from Table 1 is link to Table 2 Project Name and Client Contac
but the information doesn't flow into Table 2. I'm assuming that since
these tables are linked that information should auto flow from table1
to table2 but I must be wrong since it doesn't so can someone point me
in the right direction as to what i should do?
You want to place Table 1 ID as a foreign key in table 2. Then access
can relate the two tables and you do not have to reuse the same
information in Table 2. To view info from both tables is a simple
querry. Hope that helps. Feel free to let me know

Bill
Dec 19 '07 #3
If you don't get the table design correct at the outset, you will
slowly descend into an ever deeper mire from which, in the end, you
will not emerge! Think of tables as being the container for individual
items. Try to define what items your project consists of. For example
jobs might be one, clients another, subcontractors a third. You then
connect these items using additional linking tables, tables which can
also hold information about that particular link. Doing it this way
allows you to show clients with more than one job, foremen with more
than one job or jobs with more than one foreman; ditto subcontractors.
In other words the items are only ever held once; if you find you are
holding the same items in more than one table, then warning signs
should start flashing that the table design needs fixing. I would
strongly recommend getting a book on database design prior to
expending lots of brain power creating forms, reports etc all of which
will be wasted if the underlying structure is flawed
Dec 19 '07 #4
On Dec 19, 9:58 am, anthony <anthony.marr.. .@gmail.comwrot e:
If you don't get the table design correct at the outset, you will
slowly descend into an ever deeper mire from which, in the end, you
will not emerge! Think of tables as being the container for individual
items. Try to define what items your project consists of. For example
jobs might be one, clients another, subcontractors a third. You then
connect these items using additional linking tables, tables which can
also hold information about that particular link. Doing it this way
allows you to show clients with more than one job, foremen with more
than one job or jobs with more than one foreman; ditto subcontractors.
In other words the items are only ever held once; if you find you are
holding the same items in more than one table, then warning signs
should start flashing that the table design needs fixing. I would
strongly recommend getting a book on database design prior to
expending lots of brain power creating forms, reports etc all of which
will be wasted if the underlying structure is flawed
right you are anthony. I am available to help you with your table
design if you wish, Christopher.
Dec 19 '07 #5

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

Similar topics

3
23460
by: Jon Ole Hedne | last post by:
My Access 2002-application need to work with tables from both Oracle and Access. To solve this, I want to run some querys on three views in Oracle and import the results into temporary Access-tables. I have tried this: conn.Provider = "Microsoft.Jet.OLEDB.4.0" conn.ConnectionString = "data source=" & datafil & ";Jet OLEDB:Database Password=" conn.Open datafil
29
3711
by: Mark B | last post by:
We have an Access app (quite big) at www.orbisoft.com/download. We have had requests by potential users to have it converted to an SQL version for them since there corporate policy excludes them from buying mdb backends. Here's the (million dollar?) questions :) How long and how difficult a process would it be? Which SQL platform would we be best to develop it on?
49
14362
by: Yannick Turgeon | last post by:
Hello, We are in the process of examining our current main application. We have to do some major changes and, in the process, are questionning/validating the use of MS Access as front-end. The application is relatively big: around 200 tables, 200 forms and sub-forms, 150 queries and 150 repports, 5GB of data (SQL Server 2000), 40 users. I'm wondering what are the disadvantages of using Access as front-end? Other that it's not...
9
3212
by: Alan Lane | last post by:
Hello world: Background: Yesterday, January 21, Doug Steele was kind enough to help me out on a Left Join problem. I was trying to return all stores and their Gross Adds for December, 2004 (even though some of them had no Gross Adds for that month). My query would only show the non-zero GA stores. Doug stated "It's because of the Where clause. The stores which don't have any records for the period in question are being eliminated...
5
2917
by: B1ackwater | last post by:
We've fooled around with Access a bit, but only using the single-user store-bought version. It seems to be a good database - versatile and infinitely programmable - and can apparently be used as a front end to SQL server if we ever needed to go that route. But - is there a client/server version of Access ? Looking on the CDW site there is a bewildering variety of packages and licences and such, but we can't figure out just which do...
4
2909
by: Vanessa | last post by:
Hi there I am an Access developer, and I have written applications for a 30 telephone call center, using the standard multiuser jet engine, it all works fine, but I want to move our systems onto MySQL, as we get the odd #DELETED# (that old chestnut) so that it is more stable, I have installed mysql and myodbc and configured it in data sources (ODBC) and it works fine (done the TEST). But when I try to export a table from the mdb
1
9779
by: smaczylo | last post by:
Hello, I've recently been asked to work with Microsoft Access, and while I feel quite comfortable with Excel, I'm at a complete loss with databases. If someone could help me with this issue I'm having I'd be most appreciative. The database is already constructed, I'm just wanting to export the data to an excel file. In short, I'm hoping to export two Tables (or queries...not sure which to use - they both seem to have the same data) in...
3
2174
by: bsagert | last post by:
I downloaded BeautifulSoup.py from http://www.crummy.com/software/BeautifulSoup/ and being a n00bie, I just placed it in my Windows c:\python25\lib\ file. When I type "import beautifulsoup" from the interactive prompt it works like a charm. This seemed too easy in retrospect. Then I downloaded the PIL (Python Imaging Library) module from http://www.pythonware.com/products/pil/. Instead of a simple file that BeautifulSoup sent me, PIL is...
10
409
by: Les Desser | last post by:
In article <fcebdacd-2bd8-4d07-93a8-8b69d3452f3e@s50g2000hsb.googlegroups.com>, The Frog <Mr.Frog.to.you@googlemail.comMon, 14 Apr 2008 00:45:10 writes Thank you for that. It was very clear and I actually understand it!
0
9679
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9527
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
10223
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
10172
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
10003
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...
0
9050
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...
0
5441
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...
1
4115
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2924
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.