Results 1 to 12 of 12
  1. #1
    Emmanuel is offline Competent Performer
    Windows 10 Access 2016
    Join Date
    Jan 2020
    Posts
    272

    Setting up access database to be used over the LAN

    I will like to setup an access database to be used over the same LAN so multiple users can all connect from different computers at a time.

    Would be glad if someone could help me with the proper way to do that?

    Initially, I was thinking of setting up the database on drive C which includes splitting the database.

    Then I create copies of the front end to all computers connected to the LAN.



    Will that work out?
    If not, someone can should help me with a better suggestion.

    Thank you.

  2. #2
    CJ_London is offline VIP
    Windows 10 Access 2010 32bit
    Join Date
    Mar 2015
    Posts
    11,845
    split the db and put the BE on the server. A copy of the FE goes on each users machine. Not clear what your reference to drive C is about unless you don't have a server and are making use of an 'always on, always connected' computer.

  3. #3
    ssanfu is offline Master of Nothing
    Windows 10 Access 2010 32bit
    Join Date
    Sep 2010
    Location
    Anchorage, Alaska, USA
    Posts
    9,664
    You are correct - split the dB. The BE would/could be on a networked drive.
    Each user would have a copy of the FE on their local computer. All computers should be connected by Ethernet cabel, NOT WiFi.



    EDIT:
    Drat!!Typed too slow again...

  4. #4
    Emmanuel is offline Competent Performer
    Windows 10 Access 2016
    Join Date
    Jan 2020
    Posts
    272
    Which is the network drive?
    Where is it located?
    That’s where I don’t get the understanding
    Can that mean a shared folder on the LAN?

  5. #5
    CJ_London is offline VIP
    Windows 10 Access 2010 32bit
    Join Date
    Mar 2015
    Posts
    11,845
    Which is the network drive?
    Where is it located?
    only you can answer these questions. Most LANs will have a server which is shared by all users (subject to any restrictions). Talk to your IT dept

  6. #6
    ssanfu is offline Master of Nothing
    Windows 10 Access 2010 32bit
    Join Date
    Sep 2010
    Location
    Anchorage, Alaska, USA
    Posts
    9,664
    Quote Originally Posted by Emmanuel View Post
    Which is the network drive?
    Where is it located?
    A network drive is any drive that is discoverable/accessible on the LAN. Say you have 5 computers on a LAN and each computer has a "C" drive. Then you have 5 network drives. If two computers also have another drive (physical or logical), then you could have up to 7 network drives. Each user must have R/W privileges to drive that has the Access BE.


    Quote Originally Posted by Emmanuel View Post
    Can that mean a shared folder on the LAN?
    As long as each used has R/W privileges to the drive the shared folder is on.


    If you convert the BE to SQL Server (Express), you should have a dedicated server computer to host the BE.




    How many simultaneous/concurrent users do you have?

  7. #7
    Blings's Avatar
    Blings is offline Competent Performer
    Windows 10 Office 365
    Join Date
    May 2020
    Location
    London, UK
    Posts
    125
    This interested me as I have a database which has 8 concurrent users. I've configured it so that all frontend files are located on the SERVER folder as follows:


    1. ARC CRM - Carmen
    2. ARC CRM - David
    3. ARC CRM - Despatch
    4. ARC CRM - Greg
    5. ARC CRM - Lucrezia
    6. ARC CRM - Margaret
    7. ARC CRM - Production
    8. ARC CRM - Sarah


    Click image for larger version. 

Name:	NetworkFEBE.jpg 
Views:	43 
Size:	53.0 KB 
ID:	45748

    The backend files are:


    1. RawData
    2. RawDataSalesOrders
    3. RawDataSuppliers


    I didn't know that the frontend file should rather be on each users local machine. At the moment they each have a shortcut to their FE file on the server as I do weekly updates to the database, I update the master file "ARC CRM", delete their FE version after hours and replace their FE file with the update according to the naming structure as indicated above. How can I mitigate my current setup to easily roll updates out across the 8 computers?

  8. #8
    ssanfu is offline Master of Nothing
    Windows 10 Access 2010 32bit
    Join Date
    Sep 2010
    Location
    Anchorage, Alaska, USA
    Posts
    9,664
    OK, I never considered having 8 copies of the FE in one folder with each copy being opened by one user.
    I've always had a copy of the FE on each user's computer or (in the cloud) on each user's VM (using RDP).

    As long as there is only one user opening one FE, it should be OK.


    How can I mitigate my current setup to easily roll updates out across the 8 computers?
    Maybe have 8 folders on the server,
    \dB_User\Carmen\ARC_CRM.accdb (I don't use spaces in names, hence the underscore)
    \dB_User\David\ARC_CRM.accdb
    \dB_User\Despatch\ARC_CRM.accdb
    .
    .
    .
    \dB_User\Sarah\ARC_CRM.accdb

    Then copy the FE to each user's folder. The shortcut (on each user's computer?) would be linked to each FE in each user folder.
    Then you wouldn't have to renamed the FE each time.

  9. #9
    ssanfu is offline Master of Nothing
    Windows 10 Access 2010 32bit
    Join Date
    Sep 2010
    Location
    Anchorage, Alaska, USA
    Posts
    9,664
    FYI,
    @Blings, posting your question under Emmanuel's thread is known as "Hijacking a thread". It would be better to start your own thread and reference this thread and ask your question - more people will see your question.
    Right now, your question is hidden in Emmanuel's thread.

  10. #10
    isladogs's Avatar
    isladogs is offline MVP / VIP
    Windows 10 Access 2010 32bit
    Join Date
    Jan 2014
    Location
    Somerset, UK
    Posts
    6,127
    Agree with @ssanfu that this should be a separate thread.

    However I did make this comment in post #14 of your previous thread: Can a database FE / BE be configured for licensing? (accessforums.net)
    for best performance, the FE should be on the user's own hard drive, not the network.
    Colin, Access MVP, Website, email
    The more I learn, the more I know I don't know. When I don't know, I keep quiet!
    If I don't know that I don't know, I don't know whether to answer

  11. #11
    Blings's Avatar
    Blings is offline Competent Performer
    Windows 10 Office 365
    Join Date
    May 2020
    Location
    London, UK
    Posts
    125
    Quote Originally Posted by ssanfu View Post
    FYI,
    @Blings, posting your question under Emmanuel's thread is known as "Hijacking a thread". It would be better to start your own thread and reference this thread and ask your question - more people will see your question.
    Right now, your question is hidden in Emmanuel's thread.
    Roger that! Thanks for the tip above.

  12. #12
    CJ_London is offline VIP
    Windows 10 Access 2010 32bit
    Join Date
    Mar 2015
    Posts
    11,845
    agree with Colin, you will get a performance hit with the FE being located on the network plus the potential of damage to the FE if there is a LAN failure which wouldn't happen if the FE was on the users machine. Not to mention the risk of someone opening the wrong file.

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

Similar Threads

  1. Setting up database
    By nebblkshts in forum Database Design
    Replies: 5
    Last Post: 04-05-2019, 07:28 PM
  2. Replies: 4
    Last Post: 11-18-2014, 03:12 AM
  3. Replies: 1
    Last Post: 01-16-2013, 12:40 AM
  4. Help with setting up database
    By peachesflora in forum Database Design
    Replies: 1
    Last Post: 02-22-2011, 05:02 PM
  5. Setting up new database
    By mduplantis in forum Database Design
    Replies: 1
    Last Post: 06-23-2010, 11:07 AM

Tags for this Thread

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