473,770 Members | 1,642 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 1837
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.in fovis.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.in fovis.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.in fovis.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.in fovis.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*********@ho tmail.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****@teluspl anet.net> wrote in message
news:4t******** *************** *********@4ax.c om...
Rick Brandt <ri*********@ho tmail.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*********@ho tmail.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.in fovis.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*********@h otmail.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.c o.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

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

Similar topics

0
1750
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 database to SQL Server. I can run the upsizing wizard from within Access to do the upsizing, and the database converts fine.
1
1528
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 playing around with the upsize wizard however not all of my tables have properly converted. None of the primary keys transfer (I understand this is a limitation) and the whole thing hasn't really worked the way I thought it would. I have tried...
0
4613
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 Access 2000 to MS SQL Server 2000. My front end is MS Access interface. When I used the MS Access 2000's Upsizing Wizard for database migration, some tables cannot be migrated. The upsizing wizard report states some tables are "Tables are...
1
2096
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 to .Execute its CommandBar control, but this is a pretty messy approach and still requires input on the part of the user. Anyone know of a direct function call similar to those detailed at http://www.mvps.org/access/general/gen0028.htm?
2
1536
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 playing around with the upsize wizard however not all of my tables have properly converted. None of the primary keys transfer (I understand this is a limitation) and the whole thing hasn't really worked the way I thought it would. I have tried...
3
1863
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 dozen workstations. I intend to convert the back end to SqlServer and wish to use the upsizing wizard. I am acquiring SSW Upsizing Pro! 2000 which seems to be recommended in other discussions.
7
3027
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 permitted on . . ." 2. "No primary or candidate keys in referenced table . . . that match referencing column list in foreign key . . . Could not create constraint. 3. "Incorrect syntax near . . . " (When trying to upsize queries.)
1
1718
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 trying to learn about the way forward and trying to decide which to buy. The bit I am interested in is usually at page 900 and I am not sure whether I want to buy the first 800. It appears that upsizing creates an Access project as the...
3
2948
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 mdb is also on my local machine. I've been at it for a couple of hours now and I keep getting the same error despite trying everything I can think of: Connection failed: SQLState: '01000' SQL Server Error: 2
0
9595
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
9432
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10232
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...
1
10008
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
8891
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...
1
7420
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6682
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
5313
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3578
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.