Link to home
Start Free TrialLog in
Avatar of Member_2_314221
Member_2_314221

asked on

network database access?

i'm trying to put my database on a novell network so other users can you use my application.  i've changed the code from dbPath = App.Path & "\venlst.mdb" to dbPath = "f:\vendormanagement\venlst.mdb"

but when i try to run the program i receive the error that jet is trying to access a file that is either open exclusively by another user or i do not have permissions.

if i put the db on a drive on my local machine and change the code i.e. dbPath = "c:\vendormanagement\venlst.mdb"  it works fine.

please tell me what i can do to fix this problem.  thanks.
Avatar of cdloves
cdloves

Does the workstation has the permission to write/read to files to the computer where the database reside?  I assume that "F:\" drive is a is a network drive and was mapped.
As well as read and write permissions, the user will need create and delete permissions on the directory the database file is stored in. This is because the Jet engine will attempt to create an Access lock file in that directory when someone connects to the database, and delete it when the last connection is closed.
Try this.
Get Full Control permission to Everyone on the mdb file and see if it works. It is a bit ugly but it will definitely work.

hongjun
You may need to give Filescan permission as well, also I would use a full network path not a mapped drive, then the user cannot mess it up by changing the maps.

VB will use "//ServerName/..." as a path on a Netware Server
Hi mgreenoe,
What TravisHall suggest is right. Please give rights for read,write and create to that directory or else login as admin and try to run the same app. Admin has full control i belive.
Regards
Sridhar
Avatar of Member_2_314221

ASKER

travishall:
i'll try that tomorrow and let you know how it goes.
thanks.
I gave full rights to the directory but i recieved the same errror.  should i also give full rights the db or should everything located in the directory intrinsically be given full rights?
You mean you've restricted the access rights on the database file? Well, that might cause your problem. Users will need read and write permissions to that file too.

Really, you want to try it out with a logon that gives full access to everything, just to see if it works then, and worry about making it work for a more secure logon after that.

You don't have an old .ldb file sitting around in that directory, do you? If you do, make sure nobody is using the database, then delete that file. Even with the correct permissions on the directory, the user still won't be able to do anything if there is a .ldb file he can't modify or delete sitting there.

Bear in mind here that I'm not intimately familiar with Novell permissions. I'm trying to talk generically. I can tell you exactly what permissions users would need on an NT network, but my translation to Novell network terms might be flawed if I try to give Novell-specific answers.
I gave full rights to the directory but i recieved the same errror.  should i also give full rights the db or should everything located in the directory intrinsically be given full rights?
Was that comment intended to be different from the previous one?
ok, i'll have to play around with the permissions.  i haven't restricted the db at all but i may have to explicitly give rights to the db with Novell.  unfortunately, i'm not very familiar with Novell either nor am i in this office very often so it may be a few days until i can try it out again.

my real concern was that there was something wrong with how i was opening the db in my code.  i'll let you kow something soon.  thanks.
Was that comment intended to be different from the previous one?
sorry, i refreshed and sent the msg twice.
Was that comment intended to be different from the previous one?
ASKER CERTIFIED SOLUTION
Avatar of TravisHall
TravisHall

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
travis:  i'm going to go ahead and award you the points and if i can't figure out the Novell rights then i'll ask in that area.  thanks for your help.