Is it Time to Move to Client/Server?

Published:
One of the hot computing terms of the 21st century, client/server refers to distributed processing of information. A client/server model involves the storage of data on database servers dedicated to the tasks of processing data and storing it.

The client/server model introduces a separation of functionality. The client, or front end, is responsible for presenting the data and doing some processing. The server, or back end, is responsible for storing, protecting, and performing the bulk of the data processing.

With its tools that assist in the rapid development of queries, forms, and reports, Access provides an excellent front end for the presentation of back-end data.

For years, most information professionals have worked with traditional programming languages to process and maintain data integrity in the application. This means that data validation rules must be embedded in the programming code. Furthermore, these types of applications are record-oriented; that is, all records are read into memory and processed. This scenario has several drawbacks:

If the underlying data structure changes, every application that uses the data structure must be changed.
Data validation rules must be placed in every application that accesses a data table.
Presentation, processing, and storage are handled by one program.
Record-oriented processing results in an extraordinary amount of unnecessary network traffic.

Deciding Whether to Use the Client/Server Model

Client/server technology was not as necessary when there was a clear delineation between mainframe applications and personal computer applications. Today, the line of demarcation has blurred. Personal computer applications are taking over many applications that had been relegated to mainframe computers in the past. The problem is that users are still very limited by the bandwidth of network communications. This is one place where client/server technology can really help.

However, many developers are confused about what client/server architecture really is. Some mistakenly believe that an Access ACCDB database file stored on a file server acts as a database server. This is not the case. (In fact, I have participated in many debates in which other developers have insisted that Access itself is a database server application. Well, it's not.) Access is a front-end application that can process data stored on a back end. In this scenario, the Access application runs on the client machine accessing data stored on a database server running software such as Microsoft SQL Server. Access does an excellent job acting as the client-side, front-end software in this scenario. The confusion lies in Access's capability to act as a database server.

The difference lies in the way that data is retrieved when Access is acting as the front end to a database server versus when the data is stored in an Access ACCDB file. Suppose that you have a table with 500,000 records. A user runs a query based on the 500,000-record table stored in an Access database on a file server. Suppose that the user wants to see a list of all the Californians who make more than $75,000 per year. With the data stored on the file server in the Access ACCDB file format, all records would be sent over the network to the workstation, and the query would be performed on the workstation. This results in significant network traffic.

On the other hand, assume that these 500,000 records were stored on a database server such as Microsoft SQL Server. If the user runs the same query, only the names of the Californians who make more than $75,000 per year would be sent over the network. In this scenario, only the specific fields requested would be retrieved.
 
What does this mean to you? When should you become concerned with client/server technology and what it can offer you? The following sections present some guidelines as to why you might want to upsize from an Access back end to a SQL Server back end.

Dealing with a Large Volume of Data

As the volume of data in your Access database increases, you will probably notice degradation in performance. Many people say that 100MB is the magical number for the maximum size of an Access database, but many back-end database servers can handle databases containing multiple gigabytes of data. Although a maximum size of 100MB for an Access database is a good general guideline, it is not a hard-and-fast rule. You might find that the need to upsize occurs when your database is significantly larger or smaller than 100MB. The magic number for you depends on all the factors discussed in the following sections, as well as on how many tables are included in the database. Generally, Access performs better with large volumes of data stored in a single table rather than in multiple tables.

Dealing with a Large Number of Concurrent Users

Just as a large volume of data can be a problem, so can a large number of concurrent users. In fact, more than 10 users concurrently accessing an Access database can degrade performance. As with the amount of data, this is not a magical number. I have seen applications with fewer than 10 users where performance is awful, and I have seen applications with significantly more than 10 users where performance is acceptable. Performance often depends on how the application is designed, as well as what tasks the users are performing.

Demanding Faster Performance

Certain applications demand better performance than other applications. An Online Transaction Processing (OLTP) system generally requires significantly better performance than a Decision Support System (DSS), for example. Suppose that 100 users are simultaneously taking phone orders. It would not be appropriate for the users of the system to ask their customers to wait 15 seconds between entering each item that is ordered. On the other hand, asking users to wait 60 seconds to process a management report that users run once each month is not a lot to ask (although many will still complain about the wait).

Most back-end database servers can use multithreaded operating systems with multiple processors to handle large volumes of user demand; Access cannot.

Handling Increased Network Traffic

As a file server in an organization experiences increasing demands, the Access application simply might exacerbate an already growing problem. If the application data is moved to a database server, the overall reduced demands on the network might provide all users on the network with better performance, regardless of whether they are using the Access application.

Probably one of the most exaggerated situations I have seen is one in which all the workstations were diskless. Windows and all application software were installed on a file server. All the users were concurrently loading Microsoft Word, Microsoft Excel, and Microsoft PowerPoint over the network. In addition, they had large Access applications with many database objects and large volumes of data. This was all stored on the file server as well. Needless to say, performance was abysmal. You can't expect an already overloaded file server to handle sending large volumes of data over a small bandwidth. The benefits offered by client/server technology can help alleviate this problem.

Implementing Backup and Recovery

The backup and recovery options offered with an Access ACCDB database stored on a file server simply do not rival the options for backup and recovery on a database server. Any database server worth its salt sports very powerful uninterruptible power sources (UPSs). Many have hot-swappable disk drives with disk mirroring, disk duplexing, or disk striping with parity (RAID Level 5). With disk mirroring and duplexing, data can be written to multiple drives at one time, providing instantaneous backups. Furthermore, some database server tape backup software enables backups to be completed while users are accessing the system. Many offer automatic transaction logging. All these options mean less chance of data loss or downtime. With certain applications, this type of backup and recovery is overkill. With other applications, it is imperative.

Focusing on Security

Access offers what can be considered the best security for a desktop database. However, it cannot compare with the security provided by most database servers. Database server security often works in conjunction with the network operating system. This is the case, for example, with Microsoft SQL Server 2008 and Windows Server 2008 R2. The user is given no direct rights to the physical database file; it can be accessed only via an Open Database Connectivity (ODBC) data source, or an ActiveX Data Objects (ADO) or Data Access Objects (DAO) connection. Remember that no matter how much security you place on an Access database, a user can still see or even delete the entire ACCDB file from the network disk.
Offering protection from this potential problem, and others, on a database server is easy. Furthermore, many back-end application database server products offer field-level security not offered within an Access ACCDB file. Finally, many back ends offer integrated security with one logon for both the network and the database.

Sharing Data Among Multiple Front-End Tools

The Access ACCDB file format is proprietary. Very few other products can read data stored in the Access database format. With a back-end database server that supports ODBC, front-end applications can be written in a variety of front-end application software, all concurrently using the same back-end data.

Understanding What It All Means

You must evaluate the specific environment in which your application will run:

How many users are there?
How much data exists?
What is the network traffic already like?
What type of performance is required?
How disastrous is downtime?
How sensitive is the data?
What other applications will use the data?


After you answer these and other questions, you can begin to decide whether the benefits of the client/server architecture outweigh the costs involved.

The good news is that it is not an all-or-none decision. Various options are available for client/server applications using Access as a front end. Furthermore, if you design your application with upsizing in mind, moving to client/server technology will not require you to throw out what you have done and start again. In fact, Microsoft provides an upsizing wizard that makes upsizing to a SQL Server database a relatively painless process. How painless depends on numerous factors, including how complex your queries are, whether your queries include Visual Basic for Applications (VBA) functions, and other factors that I will cover in another article.

This article was excerpted from “Alison Balter’s Mastering Access 2007 Desktop Development,” published by SAMS and available on amazon.com.

5
3,420 Views

Comments (2)

Great article TechMommy, thanks for sharing with us!!

Hrmm one question, how do I save this article into my personal knowledgebase? I want to go through it again in the future = )
Oops apologies I found it! Using EE on the iPad and didn't see the Save button. Great article and really helps me!

Btw here's a comment by Christian on database servers that really helped me too! = ))

Hi,

yes, you can of course run an Access application on any server and so you would have an "active database server". But that's not really the same as a database server. Think of security: You can simply copy the backend file and make with it whatever you want. You can connect the database file from Excel and destroy any data you want, the only "security" Access has is a database password (which any user would have to enter if he want to use it, so the user who destroys the data maybe already has this password...). In most cases the user must have write access rights to the folder where the database file is located, so you could simply exchange the file if currently nobody is working with it and so on.

Think of performance: Any frontend would have to connect to the file, not the running Access on the server. So it gives you no performance advantage having a running Access (you would have a disadvantage because it steals performance if it does anything actively).

What does a database server for you?:
 - it secures the files needed to save the data because you connect always to the running server procedure which handles the security - you have no access rights to the data files if you're not a db admin. You can not even see the files or where they are located.
 - you have a system which optimizes anything at any time. It optimizes for example the number of connections with connection pooling, it optimizes the statistical data for accessing data through the indexes, it optimizes the indexes itself, it optimizes execution plans, all this with also a lot of caching, it optimizes which procedure will run first to get the best answer time, it deploys procedures to different processors, and so on... can you do that with a running Access as "server"?
 - you have a system which has a LOT of additional possibilities, in case of SQL Server for example the Integration Services which allows very complex imports which could be designed with a graphical editor (better than the query editor, think of it as a data flow diagram with programming possibilities), the Analysis Services, which can collect data warehouse informations and creates extreme complex possibilities of analyzing data in cubes with the Business Intelligence Studio which then can easily be used in Excel (with a free addin from MS), keyword: Data Mining. The Reporting Services which is similar to the reports in Access (a report designer) but with a LOT more possibilities like automatically deploying reports in mails only for the user who wants it, like a standard Web interface where the user (and only users which where given the rights) can work with all his assigned reports, can drill down them into other reports, can run on a dedicated report server independant of the database server and much more. The Notification Services which can forward any information you want to any device you want, including mails, mobiles or whatever.
 - SQL Server also has a compact edition which can replicate data to mobile devices so you can run your database there (but not with Access frontend) and replicate it back.

So that's enough advertising for Microsoft today...:-)
You can of course do many of these things also with other database servers like Oracle, MySQL, Firebird, PostgreSQL, whatever. SQL Server is only the best choice in case of Access as frontend as it naturally works best with software from the same producer.

You see, you can learn a lot about Access and VBA. But if you are as far as knowing ANYTHING about Access and VBA together, you can say that you can learn at least ten times as much about database servers, there are SOO many fantastic features where you now can't think of because Access does not offer that for you. But you can use these features to make the experience with Access a really better one. So really: You should forget Access as backend database, that's a choice for beginners and for some companies where the people who makes the decisions are not aware how easy it is to work with a very much better database and how many security holes they produce in letting internal people create "some little databases" with Access.

Cheers,

Christian

https://www.experts-exchange.com/questions/28208447/Implementing-backend-database-server-for-Access.html

Have a question about something in this article? You can receive help directly from the article author. Sign up for a free trial to get started.