473,405 Members | 2,262 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,405 software developers and data experts.

A humbly simple question...

Rob
Dear all

I'm well into designing my first ever Access database which is
currently about 13 megs (.mdb file) containing data on progress and
attainment of approx 500 students. What I want to know is this: to
make the database available to approx. 30 colleagues on the school
intranet, do I need to change it into a .mdw file and give everyone a
login name and password, or can multiple users open the .mdb file at
the same time? I'm on holiday right now and am working on my
standalone laptop. I intend to put the database on the school
intranet in early September. As I said, I'm new to all this, so
forgive me if this is a silly question.

Thanks in anticipation
Rob
Nov 13 '05 #1
8 1378
I'm not as advanced as a lot of the others on here but from reading their
replies to similar questions, it is safe to say that a mdb file can be
shared with multiple users. It is advised to make sure the database is split
into a frontend and backend. That is the frontend containing all the
queries, forms, macros & reports and the tables residing in the backend. The
frontend should be installed on the local C: drive and the backend installed
on the network drive. With a setup like this, there shouldn't be any problem
with all 30 students accessing the database at the same time.

Mark

"Rob" <ro********@hotmail.com> wrote in message
news:2f**************************@posting.google.c om...
Dear all

I'm well into designing my first ever Access database which is
currently about 13 megs (.mdb file) containing data on progress and
attainment of approx 500 students. What I want to know is this: to
make the database available to approx. 30 colleagues on the school
intranet, do I need to change it into a .mdw file and give everyone a
login name and password, or can multiple users open the .mdb file at
the same time? I'm on holiday right now and am working on my
standalone laptop. I intend to put the database on the school
intranet in early September. As I said, I'm new to all this, so
forgive me if this is a silly question.

Thanks in anticipation
Rob

Nov 13 '05 #2
It would be a very good idea to make sure that every user of your
application has a copy of the Front End on their pc. It would also be a
good idea to first copy each release of your application into an MDE file
before making it available for copy. People who get a new toy to play with
sometimes do just. You'd be surprised just how ingenious some idiots can be
when it comes to breaking an application. Giving them MDE versus MDB means
that they have no way to get in and alter your design.

Tony Toews created a utility he calls FE Updater which can be very useful.
His site has a lot of interesting stuff:
http://www.granite.ab.ca/accsmstr.htm

You might also look at the Access Web at www.mvps.org/access It's a great
collection of Access lore.

HTH
--
-Larry-
--

"Mark Reed" <ma*********@ntlworld.com> wrote in message
news:9k************@newsfe2-gui.ntli.net...
I'm not as advanced as a lot of the others on here but from reading their
replies to similar questions, it is safe to say that a mdb file can be
shared with multiple users. It is advised to make sure the database is split into a frontend and backend. That is the frontend containing all the
queries, forms, macros & reports and the tables residing in the backend. The frontend should be installed on the local C: drive and the backend installed on the network drive. With a setup like this, there shouldn't be any problem with all 30 students accessing the database at the same time.

Mark

"Rob" <ro********@hotmail.com> wrote in message
news:2f**************************@posting.google.c om...
Dear all

I'm well into designing my first ever Access database which is
currently about 13 megs (.mdb file) containing data on progress and
attainment of approx 500 students. What I want to know is this: to
make the database available to approx. 30 colleagues on the school
intranet, do I need to change it into a .mdw file and give everyone a
login name and password, or can multiple users open the .mdb file at
the same time? I'm on holiday right now and am working on my
standalone laptop. I intend to put the database on the school
intranet in early September. As I said, I'm new to all this, so
forgive me if this is a silly question.

Thanks in anticipation
Rob


Nov 13 '05 #3
ro********@hotmail.com (Rob) wrote:
to
make the database available to approx. 30 colleagues on the school
intranet, do I need to change it into a .mdw file and give everyone a
login name and password, or can multiple users open the .mdb file at
the same time?


Hi Rob.

You don't *have* to secure it but as another poster has mentioned, your
users will have access to your design. Securing the app is one option and
mde is another, but in either case you might want to consider applying some
business rules - eg do you really want all users to have the ability to
delete all records?

As far as distributing the front end (FE) goes, what I do is copy the
latest version to a "public" folder on our network and have the users'
shortcuts execute a batch file which copies it to their C drive and then
opens it. That way they always get the latest version when they log on. I
don't bother checking their current version against what's in my "public"
folder, a lot of people do this sort of thing but I don't see the point.

Best of luck.
Keith.
www.keithwilby.org.uk
Nov 13 '05 #4
ssb
Mark,

I am currently designing a simple access appliction with 3-5 tables
and about same number of forms, queries etc.

But I dont know how to create a separate installation for front-end
and back-end. For starters, lets say, I want both of these on my
C-Drive. How should I go about it..??

As of now, I just create a "design version" of my database and Use MDE
version for other use.

Thanks..

ssb.

"Mark Reed" <ma*********@ntlworld.com> wrote in message news:<9k************@newsfe2-gui.ntli.net>...
I'm not as advanced as a lot of the others on here but from reading their
replies to similar questions, it is safe to say that a mdb file can be
shared with multiple users. It is advised to make sure the database is split
into a frontend and backend. That is the frontend containing all the
queries, forms, macros & reports and the tables residing in the backend. The
frontend should be installed on the local C: drive and the backend installed
on the network drive. With a setup like this, there shouldn't be any problem
with all 30 students accessing the database at the same time.

Mark

Nov 13 '05 #5
Rob,

13 Megs is extremely large for your small database. Go to Tools - Database
Utilities and run Compact. It will probably take your file size down to less
than a Meg. The large file size is a natural result of the initial effort of
designing a database - when you change or delete things, Access doesn't do a
very good job of filling the "holes" in your file. It takes the easy way and
just uses new memory. Compacting will close all the "holes" in memory. Also note
that I am in business as a resource for help with Access if you need any outside
help.

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
re******@pcdatasheet.com
www.pcdatasheet.com

"Rob" <ro********@hotmail.com> wrote in message
news:2f**************************@posting.google.c om...
Dear all

I'm well into designing my first ever Access database which is
currently about 13 megs (.mdb file) containing data on progress and
attainment of approx 500 students. What I want to know is this: to
make the database available to approx. 30 colleagues on the school
intranet, do I need to change it into a .mdw file and give everyone a
login name and password, or can multiple users open the .mdb file at
the same time? I'm on holiday right now and am working on my
standalone laptop. I intend to put the database on the school
intranet in early September. As I said, I'm new to all this, so
forgive me if this is a silly question.

Thanks in anticipation
Rob

Nov 13 '05 #6
"PC Datasheet" <no****@nospam.spam> wrote in message
news:2n*****************@newsread3.news.atl.earthl ink.net...
. Also note
that I am in business as a resource for help with Access if you need any outside help.


I'm sure he noted that already Steve. You make it rather difficult to miss.
Nov 13 '05 #7
"ssb" <ma******@yahoo.com> wrote
I am currently designing a simple access
appliction with 3-5 tables and about
same number of forms, queries etc.

But I dont know how to create a separate
installation for front-end and back-end.
For starters, lets say, I want both of these
on my C-Drive. How should I go about it?

As of now, I just create a "design version"
of my database and Use MDE
version for other use.


Having multiple users logged in to the same front-end or monolithic database
significantly increases your chances of that database becoming corrupted.

A front-end (of which each user should have their own copy) consists of
queries, forms, reports, macros, and modules (and perhaps some local lookup
tables); the back end consists of tables, relationships, and the data in the
tables in a shared folder (usually on a server). You link the the front end
databases to the tables in the back end using either VBA code or File | Get
External Data | Link.

There's an introductory presentation on Access in a Multiuser Environment
that I did for my user group that you can download from
http://appdevissues.tripod.com. It will identify topics that I thought
worthwhile to discuss, and a bit more. The best collection of detailed
information and links on the subject of Access in the multiuser environment
is at MVP Tony Toews' site, http://www.granite.ab.ca/accsmstr.htm.

Larry Linson
Microsoft Access MVP
Nov 13 '05 #8
Have compacted the database and it's now approx 4 megs (quite a lot of
data in it, some in memo fields).

I've noticed that the text is spaced strangely in some of the memos,
e.g. the spaces after full stops sometimes aren't there. I imported
into Access table memo field via Excel, originally from Word. I copied
the Word text and pasted into Excel as text-only, then imported into
Access and it automatically set the field property to memo. Any ideas
on why the spacing might have changed?

Rob

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 13 '05 #9

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

Similar topics

3
by: Patchwork | last post by:
Hi Everyone, Please take a look at the following (simple and fun) program: //////////////////////////////////////////////////////////////////////////// ///////////// // Monster Munch, example...
7
by: abcd | last post by:
I am trying to set up client machine and investigatging which .net components are missing to run aspx page. I have a simple aspx page which just has "hello world" printed.... When I request...
1
by: Brian Henry | last post by:
Hello, I was tring to learn socket's (being i never used them before) and have a simple question. I want to create a listner that will get any data recieved and print it out. I've been able to...
4
by: dba_222 | last post by:
Dear Experts, Ok, I hate to ask such a seemingly dumb question, but I've already spent far too much time on this. More that I would care to admit. In Sql server, how do I simply change a...
14
by: Giancarlo Berenz | last post by:
Hi: Recently i write this code: class Simple { private: int value; public: int GiveMeARandom(void);
30
by: galiorenye | last post by:
Hi, Given this code: A** ppA = new A*; A *pA = NULL; for(int i = 0; i < 10; ++i) { pA = ppA; //do something with pA
10
by: Phillip Taylor | last post by:
Hi guys, I'm looking to develop a simple web service in VB.NET but I'm having some trivial issues. In Visual Studio I create a web services project and change the asmx.vb file to this: Imports...
17
by: Chris M. Thomasson | last post by:
I use the following technique in all of my C++ projects; here is the example code with error checking omitted for brevity: _________________________________________________________________ /*...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

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.