PC Review


Reply
 
 
Tanya
Guest
Posts: n/a
 
      4th May 2008
I have created a basic db with one form and two queries, and need to allow
multiple users to access the form to add data to the single table. Could
someone please tell me where to begin? I have been able to get two users to
open the db simultaneously, but only one person to input data at a time.

Thanks in advance.

Regards
Tanya
 
Reply With Quote
 
 
 
 
Rick Brandt
Guest
Posts: n/a
 
      4th May 2008
Tanya wrote:
> I have created a basic db with one form and two queries, and need to
> allow multiple users to access the form to add data to the single
> table. Could someone please tell me where to begin? I have been able
> to get two users to open the db simultaneously, but only one person
> to input data at a time.


Really not a User Level Security issue, but could be the permissions on the
server folder where the file resides. All users need full permissions to
that folder.

File create (to allow first user to create LDB file)
File update (to allow subsequent users to update LDB file)
File delete (to allow last user to delete LDB file upon exit)

The LDB file is what manages record locks for multiple user access.

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com


 
Reply With Quote
 
Tanya
Guest
Posts: n/a
 
      5th May 2008
Hi Rick
Thank you for your suggestions, I am not familiar with permissions in Access
- never worried about it, having only had to create basic db's. I have been
considering what you have written and realise I have a lot more to learn
about permissions. I did a little research today into backing up db's and
replica's... This is not going to be as easy as I had hoped.
Could you recommend a tutorial on setting this up to work on a network with
multiple users?
The database when it is completed will be a lot more complex and will sit on
a school server, where teachers will be able to access it. Further down the
road, I would like students to have limited access to add data.
Regards
Tanya

"Rick Brandt" wrote:

> Tanya wrote:
> > I have created a basic db with one form and two queries, and need to
> > allow multiple users to access the form to add data to the single
> > table. Could someone please tell me where to begin? I have been able
> > to get two users to open the db simultaneously, but only one person
> > to input data at a time.

>
> Really not a User Level Security issue, but could be the permissions on the
> server folder where the file resides. All users need full permissions to
> that folder.
>
> File create (to allow first user to create LDB file)
> File update (to allow subsequent users to update LDB file)
> File delete (to allow last user to delete LDB file upon exit)
>
> The LDB file is what manages record locks for multiple user access.
>
> --
> Rick Brandt, Microsoft Access MVP
> Email (as appropriate) to...
> RBrandt at Hunter dot com
>
>
>

 
Reply With Quote
 
Rick Brandt
Guest
Posts: n/a
 
      5th May 2008
Tanya wrote:
> Hi Rick
> Thank you for your suggestions, I am not familiar with permissions in
> Access - never worried about it, having only had to create basic
> db's. I have been considering what you have written and realise I
> have a lot more to learn about permissions. I did a little research
> today into backing up db's and replica's... This is not going to be
> as easy as I had hoped.
> Could you recommend a tutorial on setting this up to work on a
> network with multiple users?
> The database when it is completed will be a lot more complex and will
> sit on a school server, where teachers will be able to access it.
> Further down the road, I would like students to have limited access
> to add data.
> Regards
> Tanya


I don't know where there are on-line tutorials. There are a lot of Access
help sites that are easily found with Google though and I'm sure many will
provide the answers you need.

First off, it is not a good idea to have multiple people simultaneously in
the same application file (the file containing queries, forms, reports,
etc.). You want to use a "split" design where there is one file containing
just tables in a shared folder on the network and multiple copies of another
file containing everything else. These "front end" files have links to the
tables in the shared "back end" file and each user installs a local copy of
one on their own hard drive. While just pointing all users to a single
monolithic file on the network is technically within the Access
specifications, real-world experience show that this leads to a lot of file
corruption problems.

As for security, I don't generally recommend the built in user level
security that Access provides (no longer supported in the new 2007 file
format). Most people wanting security fall into two categories. Those
wanting to provide guidance to cooperative users that are (mostly) ignorant
of how Access works and those requiring "real" security against users who
might actually try to do things they shouldn't.

If you need the former then the built in security is overkill in my opinion
particularly given the fact that it has a steep learning curve. The vast
majority of people who attempt ULS do it incorrectly. If you need the
latter then the built in user level security really doesn't pass muster as
there are utilities easily obtained that can crack it.

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com


 
Reply With Quote
 
Tanya
Guest
Posts: n/a
 
      5th May 2008
Thank you for this explanation Rick,
I read about back end and front end files today, I will take on board
everything you have said and try to work through this.
I will see how I get on in the next couple of days with arranging this
'Front End'.. in the mean time, I appreciate your assistance.

Kind Regards
Tanya

"Rick Brandt" wrote:

> Tanya wrote:
> > Hi Rick
> > Thank you for your suggestions, I am not familiar with permissions in
> > Access - never worried about it, having only had to create basic
> > db's. I have been considering what you have written and realise I
> > have a lot more to learn about permissions. I did a little research
> > today into backing up db's and replica's... This is not going to be
> > as easy as I had hoped.
> > Could you recommend a tutorial on setting this up to work on a
> > network with multiple users?
> > The database when it is completed will be a lot more complex and will
> > sit on a school server, where teachers will be able to access it.
> > Further down the road, I would like students to have limited access
> > to add data.
> > Regards
> > Tanya

>
> I don't know where there are on-line tutorials. There are a lot of Access
> help sites that are easily found with Google though and I'm sure many will
> provide the answers you need.
>
> First off, it is not a good idea to have multiple people simultaneously in
> the same application file (the file containing queries, forms, reports,
> etc.). You want to use a "split" design where there is one file containing
> just tables in a shared folder on the network and multiple copies of another
> file containing everything else. These "front end" files have links to the
> tables in the shared "back end" file and each user installs a local copy of
> one on their own hard drive. While just pointing all users to a single
> monolithic file on the network is technically within the Access
> specifications, real-world experience show that this leads to a lot of file
> corruption problems.
>
> As for security, I don't generally recommend the built in user level
> security that Access provides (no longer supported in the new 2007 file
> format). Most people wanting security fall into two categories. Those
> wanting to provide guidance to cooperative users that are (mostly) ignorant
> of how Access works and those requiring "real" security against users who
> might actually try to do things they shouldn't.
>
> If you need the former then the built in security is overkill in my opinion
> particularly given the fact that it has a steep learning curve. The vast
> majority of people who attempt ULS do it incorrectly. If you need the
> latter then the built in user level security really doesn't pass muster as
> there are utilities easily obtained that can crack it.
>
> --
> Rick Brandt, Microsoft Access MVP
> Email (as appropriate) to...
> RBrandt at Hunter dot com
>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
domain name is missing when adding a user in Local user and groups. gchandrujs via WindowsKB.com Windows XP General 0 8th Sep 2007 05:30 PM
Program Groups based on user groups? Matt Windows XP Customization 2 30th Jul 2005 11:11 PM
User Properties/Member Of/Select Groups - groups not listed =?Utf-8?B?QW5kcmV3IEZpdmlhbg==?= Windows XP General 0 27th Jan 2004 06:16 PM
Restricted Groups. Adding user to Power User Paul Banco Microsoft Windows 2000 Group Policy 1 8th Oct 2003 07:29 PM
Groups Policy to assign user to Local Machine Power Users Groups. KA Kueh Microsoft Windows 2000 Group Policy 3 19th Sep 2003 08:35 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:12 PM.