473,748 Members | 7,142 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Using Access+DBMS with >30 users

Hello,

I'm trying to decide if the following situation would be workable:

Generate an MS Access Front End (which will run localy on client computers),
which will link to a DBMS (SQL server or Oracle). As far as I know there
will be approx. 30 till 40 users max working on the database. I think
approx. 25 users will actually enter data (others will be mostly reporting
and viewing).
I don't really know the network capacity.

Another possibilty would be to create this front end in a VB.NET
environment, using also a DBMS. This only will cost approx 30% more time to
build (since we do not have a lot of components ready for use in this
environment).

I've red a lot of different issues on performance of an access database, but
they mostly focus on the situation with an Access back end.
Can anybody give me some argumentation on this topic or some pros and cons
for the Access versusVB option.

Thanx ,

Remco GB
Jul 21 '05 #1
38 2306
Remco Groot Beumer wrote:
Hello,

I'm trying to decide if the following situation would be workable:

Generate an MS Access Front End (which will run localy on client computers),
which will link to a DBMS (SQL server or Oracle). As far as I know there
will be approx. 30 till 40 users max working on the database. I think
approx. 25 users will actually enter data (others will be mostly reporting
and viewing).
I don't really know the network capacity.

Another possibilty would be to create this front end in a VB.NET
environment, using also a DBMS. This only will cost approx 30% more time to
build (since we do not have a lot of components ready for use in this
environment).

I've red a lot of different issues on performance of an access database, but
they mostly focus on the situation with an Access back end.
Can anybody give me some argumentation on this topic or some pros and cons
for the Access versusVB option.


I think your 30% more time to develop in VB is very optimistic.

Access -> SQL Server * 40 users = no problem performance wise. IME.

--
[Oo=w=oO]

Jul 21 '05 #2
Access works great if you can count the users on one hand. SQL will save
you migration pains if you do it from the start.
"Remco Groot Beumer" <no****@nospam. com> wrote in message
news:d3******** **@news6.zwoll1 .ov.home.nl...
Hello,

I'm trying to decide if the following situation would be workable:

Generate an MS Access Front End (which will run localy on client
computers),
which will link to a DBMS (SQL server or Oracle). As far as I know there
will be approx. 30 till 40 users max working on the database. I think
approx. 25 users will actually enter data (others will be mostly
reporting
and viewing).
I don't really know the network capacity.

Another possibilty would be to create this front end in a VB.NET
environment, using also a DBMS. This only will cost approx 30% more time
to
build (since we do not have a lot of components ready for use in this
environment).

I've red a lot of different issues on performance of an access database,
but
they mostly focus on the situation with an Access back end.
Can anybody give me some argumentation on this topic or some pros and cons
for the Access versusVB option.

Thanx ,

Remco GB

Jul 21 '05 #3
Trevor,

I think your 30% more time to develop in VB is very optimistic.

You make me curious, have you any reference where you have based this
"thinking" on?

(I assume that you mean with VB, VBNet because there was the question
about).

Cor
Jul 21 '05 #4
Cor Ligthert wrote:
Trevor,
I think your 30% more time to develop in VB is very optimistic.


You make me curious, have you any reference where you have based this
"thinking" on?

(I assume that you mean with VB, VBNet because there was the question
about).


Access has a lot of features for RAD that are not present in VB or
(AFAIK) VB.Net, e.g. in Access you bind a form to a recordsource and
drag fields onto the form, this gives a textbox bound to a column and a
label (hopefully with a decent bit of text in it), in VB you drag a
textbox onto a form, then a label then you have set properties and/or
write code to get that textbox to interact with an underlying column in
a recordsource.

So for a say a form with 20 fields in, you get something up and running
in about a minute in Access, that's a form that can display/edit/delete
and find records. How long will a form with that functionality take in
VB? Bit longer than 30% more than in Access.

--
[Oo=w=oO]

Jul 21 '05 #5
martin wrote:
Access works great if you can count the users on one hand.


That'll be 31 then (counting in binary) :-)

--
[Oo=w=oO]

Jul 21 '05 #6
Trevor,

Access has a lot of features for RAD that are not present in VB or (AFAIK)
VB.Net, e.g. in Access you bind a form to a recordsource and drag fields
onto the form, this gives a textbox bound to a column and a label
(hopefully with a decent bit of text in it), in VB you drag a textbox onto
a form, then a label then you have set properties and/or write code to get
that textbox to interact with an underlying column in a recordsource.

So for a say a form with 20 fields in, you get something up and running in
about a minute in Access, that's a form that can display/edit/delete and
find records. How long will a form with that functionality take in VB? Bit
longer than 30% more than in Access.

Do you know how a datagrid in Net works?

Cor
Jul 21 '05 #7
martin wrote:
Access works great if you can count the users on one hand. SQL will
save you migration pains if you do it from the start.


The OP was talking about an Access front end to a SQL Server or Oracle back end.
In that scenario your comment is meaningless.
--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com
Jul 21 '05 #8
Cor Ligthert wrote:
Trevor,

Access has a lot of features for RAD that are not present in VB or
(AFAIK) VB.Net, e.g. in Access you bind a form to a recordsource
and drag fields onto the form, this gives a textbox bound to a
column and a label (hopefully with a decent bit of text in it), in
VB you drag a textbox onto a form, then a label then you have set
properties and/or write code to get that textbox to interact with
an underlying column in a recordsource. So for a say a form with 20 fields
in, you get something up and
running in about a minute in Access, that's a form that can
display/edit/delete and find records. How long will a form with
that functionality take in VB? Bit longer than 30% more than in
Access.

Do you know how a datagrid in Net works?

Cor


Yeah, very poorly. Grids (in general) suck. They are a horrible way to present
data with the exception of detail rows in a master/detail situation or perhaps
as a pick-list. I would use one as the primary interface with only the simplest
of data structures. Web-enabled front ends have swamped users with grid
interfaces because they are the nearest thing to a RAD solution that most
development environments offer.
--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com
Jul 21 '05 #9
When using an Access front end to SQL Server or Oracle, Access is not a
consideration for the number of users, because the Access front end is being
used by ONE user (the front end is installed directly on the client).
Having that front end located on a server and called from the client makes
no difference. Each front end runs seperately from the others. You could
have 1,000 users if you want, all using an Access front end on a SQL Server
or Oracle database.

IMHO, the reason that many developers tend to shy away from Access has more
to do with the structure of code in the Access environment. Access is a
very RAD environment, which means that doing straight-forward things is very
easy, but doing anything complicated or outside the expectations of the
designers takes more time than it would in another language. There is a
point of diminishing returns with highly RAD environmnents in terms of
developer productivity.

If you are an experienced OO developer, you can probably create a front end
in VB.Net or C# is only 30% more time than in Access, so Access will appear
more performant at first. However, if you want many of the features of
..Net: easy interoperabilit y, Object orientation, Frameworks for updating the
client environments, clean mechanisms for security, encryption, XML, Web
Services, and other features, then Access will QUICKLY become a liability.

In addition, if you allow customers to access your database from Access,
they will be able to access the database from Excel and any ODBC connection
as well. Access pretty much requires full access to the table-level data
(as opposed to using a stored procedure interface). Speaking personally, in
large environmnets, this is simply not allowed for security and data control
purposes. Many IT security specialists would turn you down cold if you
suggested this option.

My advice: Create a front end in Access if you need to put together a front
end for simple use, for a small number of users, or for a proof of concept
in an internal environment (Intranet). Let your first interface be Access
to get something in front of the users, so that they can give you better
requirements. This would be an agile approach.

Then, following behind that, create a replacement interface in VB.Net or C#.

Bottom Line: If you want to create an interface that you will maintain and
keep running for more than a year, or you need real developer productivity
when using common features of modern systems, or you need to integrate the
application with other systems, then write your front end in VB.Net or C#.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"Remco Groot Beumer" <no****@nospam. com> wrote in message
news:d3******** **@news6.zwoll1 .ov.home.nl...
Hello,

I'm trying to decide if the following situation would be workable:

Generate an MS Access Front End (which will run localy on client
computers),
which will link to a DBMS (SQL server or Oracle). As far as I know there
will be approx. 30 till 40 users max working on the database. I think
approx. 25 users will actually enter data (others will be mostly
reporting
and viewing).
I don't really know the network capacity.

Another possibilty would be to create this front end in a VB.NET
environment, using also a DBMS. This only will cost approx 30% more time
to
build (since we do not have a lot of components ready for use in this
environment).

I've red a lot of different issues on performance of an access database,
but
they mostly focus on the situation with an Access back end.
Can anybody give me some argumentation on this topic or some pros and cons
for the Access versusVB option.

Thanx ,

Remco GB

Jul 21 '05 #10

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

Similar topics

24
1924
by: Remco Groot Beumer | last post by:
Hello, I'm trying to decide if the following situation would be workable: Generate an MS Access Front End (which will run localy on client computers), which will link to a DBMS (SQL server or Oracle). As far as I know there will be approx. 30 till 40 users max working on the database. I think approx. 25 users will actually enter data (others will be mostly reporting and viewing). I don't really know the network capacity.
2
1482
by: Remco Groot Beumer | last post by:
Hello, In regards to my previous posted mail on this topic: thanks for the feedback. The 30% is told to me by a collegea. .NET is not my working area, but it's something our company provides. So i'm just looking for our options. Besides the 30% more work issue I'm mostly interested in the possibility of an Access versus DBMS (SQL server) and how this will work with 40 users (front end locally on each client). Another question that...
0
8991
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9541
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9370
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9321
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8242
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6074
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4874
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2782
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2215
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.