How to set up a development environment in MS Access

前端 未结 8 1759
别跟我提以往
别跟我提以往 2021-01-31 23:14

I have created an MS Access 2003 application, set up as a split front-end/back-end configuration, with a user group of about five people. The front end .mdb sits on a network fi

8条回答
  •  日久生厌
    2021-02-01 00:00

    Many good suggestions from other people. Here's my 2 millicents worth. My backend data is on server accessed through a Drive mapping. In my case, the Y drive. Production users get the mapping through a login script using active directory. Then the following scenarios are easily done by batch file:

    • Develop against local computer by doing a subst command in a batch file
    • run reports against last nights data by pointing Y to the backup server (read only)
    • run reports against end of month data by pointing to the right directory
    • test against specialized scenarios by keeping a special directory

    In my environment (average 5 simultaneous users, 1000's of rows, not 10,000's.) corruption has occurred, but it's rare and manageable. Only once in the last several years have we resorted to the previous days backup. We use SQL Server for our higher volume stuff, but it's not as convenient to develop against, probably because we don't have a SQL admin on site.

提交回复
热议问题