Share via

Linking Split Database Frontend with Multiple Backends

Anonymous
2015-07-21T15:59:52+00:00

I have an Access 2010 database I use to manage events for several clients. I want to split the database in such a way that each client has its own backend. The frontend would be the same for all clients, and the tables in the backend would be the same - just the data would be different. I need some help finding out 1) If this is good idea or if there is a better way to keep the data separated by client, 2) how to create the different backends with empty tables so I can add new data, and 3) how to change the links to the different backends from the frontend.

This is not a shared database. I am the only person who uses it - I just want to keep the data separate.

Thanks for your insights! J.

Microsoft 365 and Office | Access | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

  1. ScottGem 68,810 Reputation points Volunteer Moderator
    2015-07-22T01:11:38+00:00

    If you want to give the app to your client at some future date, then, when that future date comes, Create a new blank file. Then run Make Table queries for all your tables filtering for CustomerID to the new file.

    What I would do is have an unbound combobox on your startup form to select the Customer you want to work on. Make sure you leave this form open all the time you can hide it but not close it.

    Then all your forms should use queries as the Recordsource. The criteria for the CustomerID column should be:

    =Forms!startupformname!cboCustomer

    Then each form will open only for the customer you selected. Need to work on a different customer, then just change the selected customer.

    Was this answer helpful?

    0 comments No comments

7 additional answers

Sort by: Most helpful
  1. ScottGem 68,810 Reputation points Volunteer Moderator
    2015-07-22T16:28:38+00:00

    They are either an auto rim with the spokes in a star pattern or a circular astrologic map of the stars.

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2015-07-22T12:21:43+00:00

    Oh dear. If you tell me you know what star wheels are I'll be truly impressed. Thanks again for your help!

    Was this answer helpful?

    0 comments No comments
  3. ScottGem 68,810 Reputation points Volunteer Moderator
    2015-07-22T11:46:58+00:00

    You can certainly use TempVars if you prefer. I go back to before Tempvars existed, so I tend to use the form reference method.

    Was this answer helpful?

    0 comments No comments