Results 1 to 4 of 4
  1. #1
    tyrobrio is offline Novice
    Windows XP Access 2007
    Join Date
    Jan 2012
    Posts
    4

    Multi-User Design

    Hello I was looking for some advice on a Multi-User Data Entry DB that I'm developing at the moment. The idea came up because of an issue I ran into with my previous project.

    My previous project involved a simple database with 15 or so employees doing Data Entry with their own copy of FE. The FE was just one form with a linked table to the BE. However every now and then a record would be locked and everybody would be forced to exit out of the FE to free up the table to allow additions. I read that maybe it had to do with a memo field??? As a fix I broke the link and just programmed with ADO for Data Entry.



    My Current Project is a DB that allows Users to create and test procedures. A manager will create a procedure and list 20 steps on how to finish the task. The employee will follow each step writing comments and approving the step. So taking my paranoia from the last project I want to program everything with ADO to avoid records locking. The weakness with this design is that somebody grabs a record (Procedure) and edits it while someone else is accessing at the same time. The last edit submitted would be reflected in the DB while the first person might have made a critical change.

    Any thoughts?

  2. #2
    pbaldy's Avatar
    pbaldy is online now Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,521
    What I do with unbound forms is have a field in the table to track the "version" or whatever you want to call it. Let's say it's at 1 right now, and you and I both retrieve the record to edit it. The update will say "update table...where field = 1" (using the value when the record was retrieved). It will also increment the number. If I save first, your update won't work because the number is 2 at the point you try to save. Testing whether the update worked lets you inform the user their update didn't work.
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

  3. #3
    tyrobrio is offline Novice
    Windows XP Access 2007
    Join Date
    Jan 2012
    Posts
    4
    Thanks for the reply Paul. That method is quite useful and will be using it to complete this project. Thanks

  4. #4
    pbaldy's Avatar
    pbaldy is online now Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,521
    No problem.
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

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

Similar Threads

  1. Multi-User Log in
    By iky123 in forum Access
    Replies: 1
    Last Post: 04-16-2012, 10:59 AM
  2. multi user
    By crapbutaddicted in forum Access
    Replies: 3
    Last Post: 03-23-2012, 08:56 AM
  3. Replies: 3
    Last Post: 09-22-2011, 03:35 PM
  4. Multi-User Access
    By alyon in forum Access
    Replies: 4
    Last Post: 07-13-2011, 11:02 AM
  5. Design multi user database - avoid simultaneity transactions
    By snoopy2003 in forum Database Design
    Replies: 2
    Last Post: 02-27-2011, 12:03 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