A family of Microsoft relational database management systems designed for ease of use.
- FIRST SUGGESTION: There was a very similar thread where the problem was solved by increasing the MaxLocksPerFile registry entry which could be accomplished in VBA:
DAO.DBEngine.SetOption dbMaxLocksPerFile, 1000000
URL: https://answers.microsoft.com
- SECOND SUGGESTION: If that doesn't work, unfortunately, there are specific database specifications for Access, and it has very little to do with the amount of ram, the number of cores in the processor or the HD size. Check out:
There are a few "Project Specifications"/limitations too... check out the URL below:
I suspect you're going to have to simplify your project and slowly add back in the components to see which one is giving you the error. If the error comes up when you run a query or a macro, focus on that aspect of your work. You're going to have to play detective here...
Good luck!