save an Access database so that someone who does have Access can

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to save an Access database (2003) with all its functionalites
so that someone who does not have Access can use it? I also need it to
reside on the server for multi use, it this possible?
 
JAC,

You need the Access Developer Extensions that now are part of the Visual
Studio Tools software to save a file for use without Access. As to the
server, multi-user applications should be split into two databases--one that
has only the tables (the backend), and one that has everything else (the
frontend). The backend is stored on a network server while each user stores
the frontend on his local hard drive.

This structure minimizes network traffic by allowing form, query, and report
definitiuons, and code, to be uploaded locally rather than across the
network. From a developer point-of-view, it also makes upgrades to the
database, which are nearly always new and/or improved forms, changes to code,
new/better reports, etc. to be done without having exclusive use of the
database.

You should be aware, though, that while Access handles many multiuser issues
"behind the scenes", there are other aspects that the programmer must handle,
including record-locking strategy, error-handling, security, etc. I strongly
advise reading up on these issues or looking into hiring a professional
Access developer. The Access Enterprise Developer's Handbook by Litwin et al
covers these issues well.

Hope that helps.
Sprinks
 
Possible? Somewhat.
Expensive? I think so.
Easy? No.
With all its functionalites? No.

You'll need the Access Developer Extensions that comes in the Visual Studion
Tools for Office. Microsoft Visual Studio Professional 2005 is on sale now at
Amazon for $699 US.

Then you will need to install the run time on each user's computer even if
the database file is out on the network.

Even then they can only use the database as you created it. They won't be
able to modify or create forms and reports for example.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top