MDB to SQL

A

AG

I am about to convert a pair of Access 2000 programs from an mdb back end to
SQL Server 2005 back end. I will still be using mdb front ends.
Is there any advantage of converting the front ends to 2003 or even 2007?

Thanks,
 
A

Albert D. Kallal

AG said:
I am about to convert a pair of Access 2000 programs from an mdb back end
to SQL Server 2005 back end. I will still be using mdb front ends.
Is there any advantage of converting the front ends to 2003 or even 2007?

Thanks,

In most of these types of conversions, you wind up leaving the front and as
an mdb. in this type of scenario, there's no advantage to move into 2003 or
later.

it for some reason you choose the route of making an access project (adp),
that in fact there are some advantages as the later versions (2007) will
work correctly with sql server 2005. another words, if you use an access
data project, then you can use the built in query design tools inside of MS
access to design and develop your tables. however, I've always recommended
this approach if you're starting from scratch, or you don't have an existing
application with very much code (sense, if you go to access data project,
you'll have to rewrite all of your dao code).

If you're just going the ODBC link table way, then you can stick with what
you've have since you'll be using the SQL server management tools to build
and set up your tables on the server side.
 
A

AG

Thanks for the quick reply Albert. I have long found your posts and articles
very helpful.
Yes, the front ends have a great deal of DAO code and quite a few linked
temp tables (which also lets out an ADP). The longest running routines will
be converted to run server side. I am quite comfortable working in SQL
Management Studio.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top