Jet permissions and processes

A

Amy Blankenship

Do users need a specific level of permissions in order for a Jet connection
to be made to the database?

Is there a system process that needs to be running in order for Jet to
operate?

Is it possible for someone (i.e. a network administrator) to block Jet
connections or the Jet driver? If so, how would one go about determining
that this has happened?

Thanks;

Amy
 
D

Douglas J. Steele

The users require Change access (at least Read, Write, eXecute and Delete)
on the folder where the MDB file exists.

There's no system process that I'm aware of that needs to be running. There
likely are ways to stop certain DLLs from running, but I don't think that's
very common.

What symptoms are you observing that make you think that might be the case?
 
A

Amy Blankenship

Douglas J. Steele said:
The users require Change access (at least Read, Write, eXecute and Delete)
on the folder where the MDB file exists.

There's no system process that I'm aware of that needs to be running.
There likely are ways to stop certain DLLs from running, but I don't think
that's very common.

What symptoms are you observing that make you think that might be the
case?

I have created a program (not MS Access) that uses an Access Database to
provide content and track what the user is doing. On start, the application
launches an Inno setup to install the database to the user's profile. The
application is not able to read any information out of the database. The
program uses a u32 (which is essentially a dll wrapped for consumption by
this type of an application) to make a DSN'less connection. The component
is known to fail in instances where the path to the database is excessively
long, but I am pretty sure the profile folder name is not long enough to
cause that problem in this instance. I have never heard of any other cause
of failure in the u32.

I knocked together a little diagnostic application last night in the 45
minute window I had before the user went to bed and was able to determine
that a query that should return information every time was not returning
data. I did not think to get the diagnostic to raise error messages (the
rush was to just get it built to get some pointers to what the problem could
be). I doubt I'll get another shot at this particular user's machine, so
I'm sort of scrambling to try to find a way to duplicate the problem so that
we can solve it for the next user.

Thanks!

-Amy
 
T

Tom Wickerath MDB

you shouldn't be using Jet User-Level-Security

you should only be using Access Data Projects
 
A

Amy Blankenship

Tom Wickerath MDB said:
you shouldn't be using Jet User-Level-Security

you should only be using Access Data Projects

Neither is involved in this issue. But thanks anyway.

-Amy
 

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

Top