473,382 Members | 1,377 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

Read only database problem

Hi,

I have a multi-user access 2k database, with a server based backend
and a local machine based front end. What I want is :

1) one group of users to have a full access (i.e. edit, delete, insert
etc data) into the system via the front end with no restrictions

2) one group of users to have read only access on the data via the
front end

However, I don't really want to use the inbuilt access security as I
don't want my users to be bothered with remembering yet another
password. I also need the read-only group of users to still be able to
execute code that inserts data I just don't want these inserts/changes
to be saved.

Is this just wishful thinking, or is there a simple (or complex)
solution to this situation?

Thanks in advance

Al
Nov 12 '05 #1
5 1727
Sorry, wishful thinking. Without using Access security, anything you setup
will be accessible by anyone who has access to the folder it resides in. You
can create your own profiles, and restrict access to forms and such by only
including those items in the frontend, but if anyone bypasses the startup
options of the db, evertything will be wide open (forms, reports and modules
can be protected by making it an mde).

Mike Storr
www.veraccess.com

Is this just wishful thinking, or is there a simple (or complex)
solution to this situation?

Thanks in advance

Al

Nov 12 '05 #2
al******@yahoo.com (Al Jans) wrote:
However, I don't really want to use the inbuilt access security as I
don't want my users to be bothered with remembering yet another
password.


You could set up user-level security without passwords, but make the
account names the same as the users' network log on IDs, then compare
CurrentUser with the network log on ID - if they don't match, quit nosave!

HTH - Keith.
www.keithwilby.org.uk
Nov 12 '05 #3
Al Jans,
It's bending the rules a bit, but this has worked for me: A legit licensed
copy of Microsoft SQL Server Desktop Edition and a trial version of SQL
Server 7.0. The MSDE install got me a legal instance of the database engine
and the trial CD set up the Enterprise Manager tools for MSDE. There are
still throttles on the MSDE engine so I can't server a large organization
but because I mostly develop stuff for customers this doesn't matter. And
having SQL Server means I get its security model, which works really well
with Win NT 4.0 and 2K.

"Al Jans" <al******@yahoo.com> wrote in message
news:7b**************************@posting.google.c om...
Hi,

I have a multi-user access 2k database, with a server based backend
and a local machine based front end. What I want is :

1) one group of users to have a full access (i.e. edit, delete, insert
etc data) into the system via the front end with no restrictions

2) one group of users to have read only access on the data via the
front end

However, I don't really want to use the inbuilt access security as I
don't want my users to be bothered with remembering yet another
password. I also need the read-only group of users to still be able to
execute code that inserts data I just don't want these inserts/changes
to be saved.

Is this just wishful thinking, or is there a simple (or complex)
solution to this situation?

Thanks in advance

Al

Nov 12 '05 #4
There are many alternatives to using Access Security when it comes to
securing your database.

A shareware version of a simplified user security add-in - LASsie
(Light Application Security) for MS Access - is available for download
here:
http://www.peterssoftware.com/las.htm

With LASsie, you can specify that the network username is to be used
automatically as the LASsie username. This way, users don't have to
remember another username and password.

Also, there's the Access Project Security Manager from
databasecreations, Inc.:
http://www.databasecreations.com/prod_apsm.htm

Hope this helps,

Peter De Baets
Peter's Software - MS Access Tools for Developers
http://www.peterssoftware.com

al******@yahoo.com (Al Jans) wrote in message news:<7b**************************@posting.google. com>...
Hi,

I have a multi-user access 2k database, with a server based backend
and a local machine based front end. What I want is :

1) one group of users to have a full access (i.e. edit, delete, insert
etc data) into the system via the front end with no restrictions

2) one group of users to have read only access on the data via the
front end

However, I don't really want to use the inbuilt access security as I
don't want my users to be bothered with remembering yet another
password. I also need the read-only group of users to still be able to
execute code that inserts data I just don't want these inserts/changes
to be saved.

Is this just wishful thinking, or is there a simple (or complex)
solution to this situation?

Thanks in advance

Al

Nov 12 '05 #5
Don
I can only echo that LASSIE is the best choice for this problem, I had a
similar issue and it has saved hours of programming. In addition the
support from the author was exemplary
Nov 12 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Silvio Lopes de Oliveira | last post by:
Hello, I have a C++ / MFC app which uses CDatabase and CRecordset to connect to a ODBC data source for a SQL Server 7 database. The application worked properly with a MySQL database, but after...
7
by: Graham Taylor | last post by:
I've tried posting this in the 'microsoft.public.access' but I will post it here also, as I think it might be the webserver which is causing my problem. --------- I have an Access 2003 database...
12
by: francisds | last post by:
Hi, Can you guys see if there's a solution to this problem? I have a database from which I have to read each record and process that record. New records are being added all the time, so I...
2
by: Sandman | last post by:
Just looking for suggestion on how to do this in my Web application. The goal is to keep track of what a user has and hasn't read and present him or her with new material I am currently doing...
3
by: Koen | last post by:
Hi, first of all, the machine setup server 1: - UDB2 7.2.5; COUNTRY=1, location = US, IBM1250 codepage - Locale: US English; Regional Settings: English; Keyboard: Dutch; decimal separator: ....
1
by: Darn | last post by:
Hi all How do i solve this problem. I'm web developer from Malaysia, the problem occurs when i ftp an Access database which i'm using for this particular web site for it's database.The form...
4
by: weirdstuff | last post by:
Hi. I have this simple code: =========================================== ->Database query here (.. some code) $row=mysql_fetch_array($res); (...)
24
by: rudranee | last post by:
hi there, can anyone tell me how to lines from a file which are odd numbered i.e. 1st,3rd,5th...lines. i tried incrementing file pointer by 2 (fp=fp+2) but it does'nt work Can someone give me...
12
by: Sean Davis | last post by:
I am working on a simple script to read from one database (oracle) and write to another (postgresql). I retrieve the data from oracle in chunks and drop the data to postgresql continuously. The...
3
by: =?Utf-8?B?ZGF2aWQ=?= | last post by:
I try to follow Steve's paper to build a database, and store a small text file into SQL Server database and retrieve it later. Only difference between my table and Steve's table is that I use NTEXT...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.