Results 1 to 3 of 3
  1. #1
    Fkemp is offline Novice
    Windows 10 Access 2016
    Join Date
    May 2018
    Posts
    1

    Question Advice Creating a Discussion Group Papers Data Base

    Discussion Paper Database
    I have approximately 400 papers that have been presented at a discussion group over the last 40 some years.
    I am creating an Access 2016 database to store and provide a way of searching for the various papers.
    I am a reasonably proficient amateur programmer progressing from Fortran, to Basic, Pascal, VB, and Python.
    I have a copy of Wiley’s, Access 2016 Bible.
    I propose to create 3 Tables;

    1. TblTalks

    Fields

    1. Number
    2. TalkTitle
    3. Presenter
    4. TalkDate
    5. Responder
    6. Category
    7. Location ---I wonder if this should be in a separate table?



    1. TblNames

    Fields



    1. Number
    2. Names



    1. TblCatigory

    Fields

    1. Number
    2. Category

    There are 400 plus titles/papers ad there will be monthly additions. The papers “PDF format file” will be saved in the TblTalks, Location Field.
    There are presently 75 “Presenter/Responder” names. There will be additions to this field
    There are presently 12 Categories. There will be additions to this field.
    The object of the database is to be able to search by Presenter or by Category, display a list of the paper titles, Presenter, Date, Responder, and Category; that fit the search. And then be able to select a specific paper from its file location and open the PDF file of the paper so that the file can be read and or printed out.
    I have not thought out this part of the database design but with my experience in programming VBA I thought that it could be accomplished when I get to that point.
    I appreciate any suggestions, directions, help and critiques that will assist me in creating this database.
    Fred Lasswell, PE
    lecofr@bellsouth.net

  2. #2
    Micron is offline Very Inert Person
    Windows 10 Access 2016
    Join Date
    Jun 2014
    Location
    Ontario, Canada
    Posts
    13,372
    Advise against using reserved words for any object name (such as Names, Name, Number...). See http://allenbrowne.com/AppIssueBadWord.html
    Also advise against storing files in an Access db
    The papers “PDF format file” will be saved in the TblTalks, Location Field.
    Only store the file path in a table and use code to open said file.
    Don't combine first and last names (tblNames)
    Consider whether or not there can be 2 or more presenters/locations/whatever associated with the entity (talk). If so, then yes, separate them if it doesn't cause any grief (normalize until it hurts, they say). Another reason to separate would be to create a lookup table (no, not a lookup field in a table) so as to somewhat control what can be entered for key attributes. You present a combo list and make the user select from that so you don't end up with Emery vs Emory.
    Pretty sure there are library type schemas here http://www.databaseanswers.org/data_models/ if you want to compare.
    The more we hear silence, the more we begin to think about our value in this universe.
    Paraphrase of Professor Brian Cox.

  3. #3
    June7's Avatar
    June7 is offline VIP
    Windows 10 Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,644
    Put name parts in separate fields: LName, FName, MName, CourtesyTitle, Suffix
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 2
    Last Post: 10-04-2016, 05:56 AM
  2. Replies: 4
    Last Post: 09-18-2014, 06:41 AM
  3. Replies: 1
    Last Post: 07-08-2014, 06:22 AM
  4. Replies: 0
    Last Post: 02-25-2013, 04:43 PM
  5. Creating a Knowledge Base
    By certified_techy in forum Database Design
    Replies: 3
    Last Post: 04-16-2012, 09:29 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums