473,395 Members | 1,335 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,395 software developers and data experts.

Upsizing to SQL Server

Hi

We have a front end/back end type access app. We would like to upsize the
app to sql server but can not re-write the whole app immediately. Is it
feasible to just upsize the backend (data part) only to sql server using
upsizing wizard without any drastic effect on the performance of the front
end access app (which would link to the tables on the sql server after
upsizing)?

Thanks

Regards

Nov 13 '05 #1
12 1806
If you make no changes at all, there will be a small and possibly
non-noticable decrease in performance due to SQL-Server's logging function.
It is certainly easy enough to test it by doing the upsize and testing the
performance on your biggest transactions.

Start replacing your bound forms with ones based on views and stored procs,
doing the slowest loading ones first. Access mdb's integrate quite nicely
with SQL-Server and tend to be slightly preferable for reporting.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access

"John" <Jo**@nospam.infovis.co.uk> wrote in message
news:41***********************@news-text.dial.pipex.com...
Hi

We have a front end/back end type access app. We would like to upsize the
app to sql server but can not re-write the whole app immediately. Is it
feasible to just upsize the backend (data part) only to sql server using
upsizing wizard without any drastic effect on the performance of the front
end access app (which would link to the tables on the sql server after
upsizing)?

Thanks

Regards

Nov 13 '05 #2
On Wed, 29 Sep 2004 02:40:44 +0100, "John" <Jo**@nospam.infovis.co.uk>
wrote:

Try it.
The upsize wizard will create a new app with attached tables to the
sql server. You be the judge on how well that works for your app.

Purists don't like this approach. It's not client/server and you're
not taking advantage of what the SQL Server has to offer.

Pragmatists have an app that they can use right away, and optimize
only the performance bottlenecks.

-Tom.
Hi

We have a front end/back end type access app. We would like to upsize the
app to sql server but can not re-write the whole app immediately. Is it
feasible to just upsize the backend (data part) only to sql server using
upsizing wizard without any drastic effect on the performance of the front
end access app (which would link to the tables on the sql server after
upsizing)?

Thanks

Regards


Nov 13 '05 #3
"John" <Jo**@nospam.infovis.co.uk> wrote:
We have a front end/back end type access app. We would like to upsize the
app to sql server but can not re-write the whole app immediately. Is it
feasible to just upsize the backend (data part) only to sql server using
upsizing wizard without any drastic effect on the performance of the front
end access app (which would link to the tables on the sql server after
upsizing)?


I'd agree with Arvin and Tom's comments.

Also see my Random Thoughts on SQL Server Upsizing from Microsoft Access Tips page at
http://www.granite.ab.ca/access/sqlserverupsizing.htm

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Nov 13 '05 #4
Tom van Stiphout wrote:
On Wed, 29 Sep 2004 02:40:44 +0100, "John" <Jo**@nospam.infovis.co.uk>
wrote:

Try it.
The upsize wizard will create a new app with attached tables to the
sql server. You be the judge on how well that works for your app.

Purists don't like this approach. It's not client/server and you're
not taking advantage of what the SQL Server has to offer.

Pragmatists have an app that they can use right away, and optimize
only the performance bottlenecks.

-Tom.


In what way is it not "client/server"? The "server" will still execute
the vast majority of the data processing respoding to requests from the
"client".
--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com
Nov 13 '05 #5
Rick Brandt <ri*********@hotmail.com> wrote:
Try it.
The upsize wizard will create a new app with attached tables to the
sql server. You be the judge on how well that works for your app.

Purists don't like this approach. It's not client/server and you're
not taking advantage of what the SQL Server has to offer.

Pragmatists have an app that they can use right away, and optimize
only the performance bottlenecks.

-Tom.


In what way is it not "client/server"? The "server" will still execute
the vast majority of the data processing respoding to requests from the
"client".


Maybe not "efficient client/server".

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Nov 13 '05 #6
"Tony Toews" <tt****@telusplanet.net> wrote in message
news:4t********************************@4ax.com...
Rick Brandt <ri*********@hotmail.com> wrote:
In what way is it not "client/server"? The "server" will still execute
the vast majority of the data processing respoding to requests from the
"client".


Maybe not "efficient client/server".


Well sure, I would agree with that :)

--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com
Nov 13 '05 #7
On Tue, 28 Sep 2004 21:21:25 -0500, Rick Brandt
<ri*********@hotmail.com> wrote:

It depends of course on your definition of client/server. My
definition is that most processing occurs on the server, and the app
is written so as to reduce network traffic as much as reasonably
possible.
Just attaching to SQL Server tables doesn't give you these benefits.

-Tom.

Tom van Stiphout wrote:
On Wed, 29 Sep 2004 02:40:44 +0100, "John" <Jo**@nospam.infovis.co.uk>
wrote:

Try it.
The upsize wizard will create a new app with attached tables to the
sql server. You be the judge on how well that works for your app.

Purists don't like this approach. It's not client/server and you're
not taking advantage of what the SQL Server has to offer.

Pragmatists have an app that they can use right away, and optimize
only the performance bottlenecks.

-Tom.


In what way is it not "client/server"? The "server" will still execute
the vast majority of the data processing respoding to requests from the
"client".


Nov 13 '05 #8
On Wed, 29 Sep 2004 06:29:09 -0700, Tom van Stiphout
<no*************@cox.net> wrote:
On Tue, 28 Sep 2004 21:21:25 -0500, Rick Brandt
<ri*********@hotmail.com> wrote:

It depends of course on your definition of client/server. My
definition is that most processing occurs on the server, and the app
is written so as to reduce network traffic as much as reasonably
possible.

-Tom.
Hi Tom
Fair definition, and reducing network traffic is absolute top
priority, but I often wonder why we want to do as much processing as
possible on the server. I try to do as little as possible, essentially
just the generation of recordsets.

Most heavily used systems have much more total procesing power in the
clients than in the server. This is extremely so in the case of
successful web apps, even with Jscript. You can't change this by
promoting simpler clients as processing power is very cheap and users
like having it. The only advantage of using a server at all
(admittedly this is an OVERWHELMING advantage) is the collection of
data, updating etc in a single place for integrity and sharing.

For non-web client-server there is the problem of deployment and
updating of the client-side software. However this can be done using
the Internet in various ways.
David Schofield
Just attaching to SQL Server tables doesn't give you these benefits.

I certainly agree with this! David

Nov 13 '05 #9
On 29 Sep 2004 09:29:12 -0500, d.***************@blueyonder.co.uk
(David Schofield) wrote:

The two are related.
In order to reduce network traffic, you have to process on the server.
The example I always use:
select * from customers where state='AZ'
In Access, that pulls the whole table over the wire, or at least the
index on state if there is one, and the query is processed locally.
49/50 of the results are thrown out (assuming equal distribution of
customers over the country), and the customers of Arizona are left to
play with.
In SQL Server, the server processes the request, and only sends 1/50
of the data over the wire.

Another reason for server processing is that SQL Server supports
multiple processors very well, and can take advantage of all available
server hardware (including >4GB of memory), and you can also scale to
a server farm to process requests more quickly (or for failover/
redundancy). Thus it becomes more realistic to "throw more hardware at
the problem". Upgrading all clients to gain more speed is
exponentially more expensive.

-Tom.

On Wed, 29 Sep 2004 06:29:09 -0700, Tom van Stiphout
<no*************@cox.net> wrote:
On Tue, 28 Sep 2004 21:21:25 -0500, Rick Brandt
<ri*********@hotmail.com> wrote:

It depends of course on your definition of client/server. My
definition is that most processing occurs on the server, and the app
is written so as to reduce network traffic as much as reasonably
possible.

-Tom.

Hi Tom
Fair definition, and reducing network traffic is absolute top
priority, but I often wonder why we want to do as much processing as
possible on the server. I try to do as little as possible, essentially
just the generation of recordsets.

Most heavily used systems have much more total procesing power in the
clients than in the server. This is extremely so in the case of
successful web apps, even with Jscript. You can't change this by
promoting simpler clients as processing power is very cheap and users
like having it. The only advantage of using a server at all
(admittedly this is an OVERWHELMING advantage) is the collection of
data, updating etc in a single place for integrity and sharing.

For non-web client-server there is the problem of deployment and
updating of the client-side software. However this can be done using
the Internet in various ways.
David Schofield
Just attaching to SQL Server tables doesn't give you these benefits.

I certainly agree with this! David


Nov 13 '05 #10
On Wed, 29 Sep 2004 19:15:49 -0700, Tom van Stiphout
<no*************@cox.net> wrote:

The two are related.
In order to reduce network traffic, you have to process on the server.
The example I always use:
select * from customers where state='AZ'
In Access, that pulls the whole table over the wire, or at least the
index on state if there is one, and the query is processed locally.
49/50 of the results are thrown out (assuming equal distribution of
customers over the country), and the customers of Arizona are left to
play with.
In SQL Server, the server processes the request, and only sends 1/50
of the data over the wire.

I certainly agree with this.
Upgrading all clients to gain more speed is
exponentially more expensive.

-Tom.


This is true, but for the cases I deal with (web mainly), the clients
are already more than powerful enough. The sort of processing I like
to see on the clients (referring to data-related examples) are things
like sorting, filtering and spreadsheet-like stuff which most systems
do by resending the dataset from the server in a different format.

The true server zealot (I'm sure you are not one!) is a megalamaniac
who wants to control every keystoke and doesn't think the user should
hava a computer at all. He is prepared for whatever network traffic is
necessary to achieve this, which is increasingly possible. Maybe that
is what I was reacting against.
-David

Nov 13 '05 #11
Tom van Stiphout wrote:
On 29 Sep 2004 09:29:12 -0500, d.***************@blueyonder.co.uk
(David Schofield) wrote:

The two are related.
In order to reduce network traffic, you have to process on the server.
The example I always use:
select * from customers where state='AZ'
In Access, that pulls the whole table over the wire, or at least the
index on state if there is one, and the query is processed locally.
49/50 of the results are thrown out (assuming equal distribution of
customers over the country), and the customers of Arizona are left to
play with.
In SQL Server, the server processes the request, and only sends 1/50
of the data over the wire.
If you are suggeting that this is what happens with ODBC linked tables a
simple SQL Trace will show you that this is incorrect. This is what
would happen with an mdb on the server. With an ODBC linked table to a
Server Engine the SQL statement WILL be passed to the server for
processing and only the results sent back. Even the use of DLookup
against a linked table sends a perfectly formatted SQL statement to the
server and only the matching rows returned.
Another reason for server processing is that SQL Server supports
multiple processors very well, and can take advantage of all available
server hardware (including >4GB of memory), and you can also scale to
a server farm to process requests more quickly (or for failover/
redundancy). Thus it becomes more realistic to "throw more hardware at
the problem". Upgrading all clients to gain more speed is
exponentially more expensive.


I agree with minimizing *network traffic* but even the most basic of
modern PCs has more than enough processing power to do any processing
beyond the selection of the data.

--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com
Nov 13 '05 #12
Tom van Stiphout <no*************@cox.net> wrote in
news:72********************************@4ax.com:
It depends of course on your definition of client/server. My
definition is that most processing occurs on the server, and the
app is written so as to reduce network traffic as much as
reasonably possible.
Just attaching to SQL Server tables doesn't give you these
benefits.


Er, Jet is pretty smart in handing off an awful lot of things to the
server, so you do get the benefit of server-side processing for the
kinds of queries that *can* be handed off to the server.

If you're selecting and/or sorting on an Access/Jet expression,
you'll lose that benefit (though not entirely all of it in all
cases, since joins and other criteria on indexed fields could
significantly reduce the umber of records that will need to be
retrieved to calculate the expression values).

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #13

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

Similar topics

0
by: Gary Bouchard | last post by:
I have a Visual Basic 6 application that uses MDB or SQL Server databases. I was wondering if it was possible via Automation or ADO or some method, where I could programmicatlly upsize an MDB...
1
by: Big Time | last post by:
I have an Access 2000 DB that I've been considering upsizing to SQL Server 2K. I'm wondering if anyone can share their experiences in upsizing and let me know of any tips or pratfalls. I've been...
0
by: Bon | last post by:
Hello All I got "Tables are skipped or export failed" error when I used upsizing wizard on migrating MS Access 2000 to MS SQL Server 2000. I am changing my application backend database from MS...
1
by: Calum Chisholm | last post by:
I'm looking to call the upsizing wizard from within a VBA function, preferably automating the entire upsizing process. Has anyone achieved this under Access 2003? The best I've managed so far is...
2
by: Big Time | last post by:
I have an Access 2000 DB that I've been considering upsizing to SQL Server 2K. I'm wondering if anyone can share their experiences in upsizing and let me know of any tips or pratfalls. I've been...
3
by: Devonish | last post by:
I am planning to convert an existing Access database which has a back end (data tables and relationships only) on a server and a copy of the front end (form, queries, reports) on each of about a...
7
by: JM | last post by:
I'm using Access 2003 to attempt an upsize to SQL Server 2000. The Upsizing Wizard is giving me tons of problems with error messages like: 1. "Object is invalid. Extended properties not...
1
by: Jim Devenish | last post by:
I am continuing my exploration about upsizing to SQLServer from Access 2000. I have a split database with a front-end and a back-end, each of which is A2K. I have spent some time in bookshops...
3
by: Wayne | last post by:
I've just installed SQL Server 2005 Express together with SQL Management Studio Express on my local machine and I'm trying to upsize a data mdb to SQL Server using the upsizing wizard. The data...
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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...
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:
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.