Recent content by Benginner2212

  1. B

    Question about best practice on overwriting records vs deleting records

    I was able to find some time to work to on my database. I have created a table that I will be using to keep the history of cable number when the cable is decommissioned or other information is changed. And I have created an append query that updates the archive table. Now the issues that I am...
  2. B

    Question about best practice on overwriting records vs deleting records

    There have been some other more urgent issues that have cropped up the last couple of days that have prevented me from working on this problem. I am hoping that I can get those other issues resolved so that I can turn my attention back tp to this problem.
  3. B

    Question about best practice on overwriting records vs deleting records

    Yes, Category, CableType and Cable Number are assigned when a cable is added. The source and destination get assigned when a cable is installed somewhere and the source and destination racks can be changed if the cable gets moved and installed somewhere else. Activecable was my initial attempt...
  4. B

    Question about best practice on overwriting records vs deleting records

    We are using this database to track equipment maintenance and equipment problems as well as cable numbers. I isolated the relationships for the cable number portion of the database.
  5. B

    Question about best practice on overwriting records vs deleting records

    There was another access forum that I used to be active on where I was told that when you deleted a records that have a relationship with records on another table its possible the relationship between the two records might not be deleted correctly. And that could potentially corrupts the database.
  6. B

    Question about best practice on overwriting records vs deleting records

    I am not trying to get you to make the decision for me. I am simultaneously trying to weighs the pros and cons as I see them and figure out how to code this. Having an archive of the old cable numbers would be beneficial.
  7. B

    Question about best practice on overwriting records vs deleting records

    I am sorry, I may have been using some terminology incorrectly. There are two situations where we would reuse a cable number. The first situation is just like you described, HDV2202 is connects our old digital beta tape deck to input 279 on our video router. Then the 20 year old digital beta...
  8. B

    Question about best practice on overwriting records vs deleting records

    No, there were only two fields that are combined to determine uniqueness. Up to this point I haven't concatenated the two fields. I have added a field labeled fullCableNumber that will be a concatenation of the cableCategory_PK and the cableNumber fields. Then I will be able to use the...
  9. B

    Question about best practice on overwriting records vs deleting records

    When you say to add a third field to the PK, do mean add a third field to the Index that I am trying to create or add a third field to the parent table for the cableCategory_PK? I can't think of a way to clean up the data to remove the duplicate entries error because there a multiple cables in...
  10. B

    Question about best practice on overwriting records vs deleting records

    I am still not following you on how to create the unique index based on two fields of the form. This is the process that I did based on your directions. I opened the indexes dialog box and the PrimaryKey Index is already listed. I create a new index on the first blank line and call it...
  11. B

    Question about best practice on overwriting records vs deleting records

    I am sorry that I misunderstood your suggestion. I tried to create a unique index based on the two working fields that I am using for the cable category and the cable number but I get an error message that states I can't do it because it would create duplicate records. However I was able to...
  12. B

    Question about best practice on overwriting records vs deleting records

    I think that I will have to go with the second solution that you've suggested. Right now the field for the "HDV" is a combo box from a table that contains all of the categories of cables that is separate from the table that contains the field for "2205" I don't think that I could create a...
  13. B

    Question about best practice on overwriting records vs deleting records

    While that would be the easiest solution, my boss is against anything would affect the uniformity of the drawings and layout of the physical layout of the printed copy of the database and would veto the change. I am lucky that I was able to convince him that switching to an outlook database was...
  14. B

    Question about best practice on overwriting records vs deleting records

    @Pat Hartman @ The_Doc_Man I'm a broadcast engineer for my state's local PBS station and the purpose of of the database is what cables are connection various pieces of equipment together and the function of each cable that is connected to a piece of equipment. All of the cables are given a 7...
  15. B

    Question about best practice on overwriting records vs deleting records

    I have error checking on the all of the fields of the record to try an ensure that good data has been entered by the user before a record is saved. I am concerned that if I were to set the other fields to Null that I would be getting Null errors when I tried to pull up the record for a...
Top Bottom