If you create a multi-user database you should split it into a front end (with all the business logic) and a back end containing the tables. The back end belongs on the network in a shared directory; the front end should be on each user's local PC. Of course, putting files on the network can expose data to people who should not have access to it. Part of database protection is limiting who can view your data, and this can be done using two simple steps:
Your IT department can provide you with a directory whose access is limited to those who will be using the database. The directory must be read-write for all users who can view it.
Test read-write by navigating to the directory and trying to create a text file. If you can’t, you do not have write permissions in the directory and will be unable to open an Access database placed there. Get IT to update your permissions.
If you want to only have users viewing your data through the front end database you created, you can password-protect the back end database to stop people from directly opening it.
Now open the front end database again. When you try to launch a form, table or query you will get an error because the database cannot link to the back end any more. You will find that the Linked Table manager doesn’t help at this point; you need to re-create the links.