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  

HELP! DB Design to later query multiple keywords



 
 
Thread Tools Display Modes
  #1  
Old December 11th, 2008, 05:37 PM posted to microsoft.public.access.tablesdbdesign
Rhoswen
external usenet poster
 
Posts: 4
Default HELP! DB Design to later query multiple keywords

I am an Access novice, using v 2007.

I need to design a database to store our company's project information in
for later reference for marketing, etc. Each project needs to have multiple
associated keywords from several different categories. The goal is to be able
to run a query specifying certain keywords, and a list of associated projects
will return.

Some of the categories are Sector, Project Type, Materials and Services.

Under Sector would be commerical, industrial, residential, etc.

Materials would include steel, wood, masonry...and so on.

I need a way to assign mulitiple selections from each category to all the
projects, so that later when I need to find an industrial project, that
included steel and masonry work and on which we provided services such as
project management and structural design, I can query that information easily
and it will return that projects A, F and G meet that criteria.

Any suggestions on how to lay out the tables and relationships to make this
work??

Thanks in advance for any help!
  #2  
Old December 11th, 2008, 07:04 PM posted to microsoft.public.access.tablesdbdesign
Steve[_57_]
external usenet poster
 
Posts: 598
Default HELP! DB Design to later query multiple keywords

TblProject
ProjectID
ProjectName
ProjectStartDate
ProjectCompletionDate
etc

TblProjectCategory
ProjectCategoryID
ProjectCategory

TblProjectCategoryItem
ProjectCategoryItemID
ProjectCategoryID
Item

TblProjectItem
ProjectItemID
ProjectID
ProjectCategoryItemID

1. Record categories in TblCategory
2. Record category items in TblProjectCategoryItem; such as commerical,
industrial, residential, etc. in Sector
3. Record items in category in TblProjectCategoryItem; such as project
management and structural design in services
4. Record for a project each category and each item in each category in
TblProjectItem; such as project management and structural design of services
for projects A, F and G.

You can then use a properly structured query to do what you want.

Steve



"Rhoswen" wrote in message
...
I am an Access novice, using v 2007.

I need to design a database to store our company's project information in
for later reference for marketing, etc. Each project needs to have
multiple
associated keywords from several different categories. The goal is to be
able
to run a query specifying certain keywords, and a list of associated
projects
will return.

Some of the categories are Sector, Project Type, Materials and Services.

Under Sector would be commerical, industrial, residential, etc.

Materials would include steel, wood, masonry...and so on.

I need a way to assign mulitiple selections from each category to all the
projects, so that later when I need to find an industrial project, that
included steel and masonry work and on which we provided services such as
project management and structural design, I can query that information
easily
and it will return that projects A, F and G meet that criteria.

Any suggestions on how to lay out the tables and relationships to make
this
work??

Thanks in advance for any help!



  #3  
Old December 11th, 2008, 08:54 PM posted to microsoft.public.access.tablesdbdesign
Rhoswen
external usenet poster
 
Posts: 4
Default HELP! DB Design to later query multiple keywords

Thanks, Steve! You're my new superhero! Works great. I've just spent so many
years in Excel flat files, I'm having trouble wrapping my brain around
relational db design.

Appreciate the time you took to help.

"Steve" wrote:

TblProject
ProjectID
ProjectName
ProjectStartDate
ProjectCompletionDate
etc

TblProjectCategory
ProjectCategoryID
ProjectCategory

TblProjectCategoryItem
ProjectCategoryItemID
ProjectCategoryID
Item

TblProjectItem
ProjectItemID
ProjectID
ProjectCategoryItemID

1. Record categories in TblCategory
2. Record category items in TblProjectCategoryItem; such as commerical,
industrial, residential, etc. in Sector
3. Record items in category in TblProjectCategoryItem; such as project
management and structural design in services
4. Record for a project each category and each item in each category in
TblProjectItem; such as project management and structural design of services
for projects A, F and G.

You can then use a properly structured query to do what you want.

Steve



"Rhoswen" wrote in message
...
I am an Access novice, using v 2007.

I need to design a database to store our company's project information in
for later reference for marketing, etc. Each project needs to have
multiple
associated keywords from several different categories. The goal is to be
able
to run a query specifying certain keywords, and a list of associated
projects
will return.

Some of the categories are Sector, Project Type, Materials and Services.

Under Sector would be commerical, industrial, residential, etc.

Materials would include steel, wood, masonry...and so on.

I need a way to assign mulitiple selections from each category to all the
projects, so that later when I need to find an industrial project, that
included steel and masonry work and on which we provided services such as
project management and structural design, I can query that information
easily
and it will return that projects A, F and G meet that criteria.

Any suggestions on how to lay out the tables and relationships to make
this
work??

Thanks in advance for any help!




  #4  
Old December 11th, 2008, 09:47 PM posted to microsoft.public.access.tablesdbdesign
Steve[_57_]
external usenet poster
 
Posts: 598
Default HELP! DB Design to later query multiple keywords

You're welcome!

I provide help with Access and Excel applications for a modest fee. If you
need help beyond what you can get in a newsgroup or if you need quick help,
contact me at .

Steve




"Rhoswen" wrote in message
...
Thanks, Steve! You're my new superhero! Works great. I've just spent so
many
years in Excel flat files, I'm having trouble wrapping my brain around
relational db design.

Appreciate the time you took to help.

"Steve" wrote:

TblProject
ProjectID
ProjectName
ProjectStartDate
ProjectCompletionDate
etc

TblProjectCategory
ProjectCategoryID
ProjectCategory

TblProjectCategoryItem
ProjectCategoryItemID
ProjectCategoryID
Item

TblProjectItem
ProjectItemID
ProjectID
ProjectCategoryItemID

1. Record categories in TblCategory
2. Record category items in TblProjectCategoryItem; such as
commerical,
industrial, residential, etc. in Sector
3. Record items in category in TblProjectCategoryItem; such as project
management and structural design in services
4. Record for a project each category and each item in each category
in
TblProjectItem; such as project management and structural design of
services
for projects A, F and G.

You can then use a properly structured query to do what you want.

Steve



"Rhoswen" wrote in message
...
I am an Access novice, using v 2007.

I need to design a database to store our company's project information
in
for later reference for marketing, etc. Each project needs to have
multiple
associated keywords from several different categories. The goal is to
be
able
to run a query specifying certain keywords, and a list of associated
projects
will return.

Some of the categories are Sector, Project Type, Materials and
Services.

Under Sector would be commerical, industrial, residential, etc.

Materials would include steel, wood, masonry...and so on.

I need a way to assign mulitiple selections from each category to all
the
projects, so that later when I need to find an industrial project, that
included steel and masonry work and on which we provided services such
as
project management and structural design, I can query that information
easily
and it will return that projects A, F and G meet that criteria.

Any suggestions on how to lay out the tables and relationships to make
this
work??

Thanks in advance for any help!






  #5  
Old December 11th, 2008, 10:15 PM posted to microsoft.public.access.tablesdbdesign
John... Visio MVP
external usenet poster
 
Posts: 900
Default Little stevie is at it again!

"Steve" wrote in message
m...
You're welcome!

I provide help with Access and Excel applications for a modest fee. If you
need help beyond what you can get in a newsgroup or if you need quick
help, contact me at .

Steve


These newsgroups are provided by Microsoft for FREE peer to peer support.
Stevie is a known troll who harrasses posters for work. He provides
questionable results at immodest prices.

There was nothing special about his original answer.

John... Visio MVP

  #6  
Old December 12th, 2008, 09:11 AM posted to microsoft.public.access.tablesdbdesign
Keith Wilby
external usenet poster
 
Posts: 812
Default HELP! DB Design to later query multiple keywords

"Steve" wrote in message
m...
contact me


But before you do that, read this:

http://home.tiscali.nl/arracom/whoissteve.html

 




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


All times are GMT +1. The time now is 11:27 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.