A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Table Design Question



 
 
Thread Tools Display Modes
  #1  
Old July 16th, 2004, 01:00 PM
Lost_In_Tables
external usenet poster
 
Posts: n/a
Default Table Design Question

I am creating a table, which includes a field titled
Problems. This field needs to handle multiple entries,
e.g., 1. Called vendor 01/02/03
2. Called vendor 01/03/03
3. Resolved issue with vendor 01/04/03

I know that the field can only hold one entry, however, is
there a way to accomplish the above task with a linked
table, document...etc.

Any help/suggestion would be appreciated.

Thanks,

Ed
  #2  
Old July 16th, 2004, 01:36 PM
Jeff Boyce
external usenet poster
 
Posts: n/a
Default Table Design Question

Ed

You've identified your solution (and avoided a major headache!). You really
don't want to include more than one "fact" in a field, mainly because of the
extra work it will take you to build routines to parse the separate facts.

If you are saying that you have Issues (Problems), and you have Actions
(related to Problems, e.g., calls, resolutions, etc.), you can use a
one-to-many relationship between the Problems table and a new Actions table.

I'll also point out that your first description:
e.g., 1. Called vendor 01/02/03
2. Called vendor 01/03/03
3. Resolved issue with vendor 01/04/03

included multiple Actions, AND included multiple facts within each Action.
I'd suggest you consider something like:

trelAction
ActionID
ProblemID (a foreign key field, pointing back to the Problem row for
which this action happened)
ActionDate (or Date/Time)
ActionDescription (what was done)

With this type of table structure, you can easily query to find which
Actions happened on which date(s), concerning which Problems.

For a user-interface, use a main form (based on tblProblem) with a sub-form
(based on trelAction).

--
Good luck

Jeff Boyce
Access MVP

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Table design question - advice needed David Database Design 3 June 8th, 2004 02:21 AM
Table design BillT New Users 11 May 25th, 2004 03:41 PM
Table design question?? Norman F Database Design 2 April 30th, 2004 10:30 PM
Table Design for Operating Permit Michael DiCostanzo Database Design 2 April 29th, 2004 04:37 AM
Table design for a booking system Brian C Database Design 2 April 27th, 2004 03:11 AM


All times are GMT +1. The time now is 07:44 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.