Groups | Blog | Home
all groups > sql server clients > march 2006 >

sql server clients : Upgrading from Access


rmcompute
3/7/2006 7:10:27 PM
I work for a company which uses local Access databases at 15 different
locations through-out the country. If I want to extract data from these
databases, I have to import the tables from the respective servers or create
linked tables to those servers. The data connection is not instantaneous and
in some cases takes a few minutes to pull even a small amount of data. Could
each of these databases be set up to update tables on an SQL Server for which
I could connect to and wouldn't this speed up data acccess speed ? Is there
any documentation on the web which describes how to set this up ? I am
assuming that the local database speed would slow down if they accessed an
Jack Vamvas
3/27/2006 12:00:00 AM
1)How regualarly would you extract the data?
2)It is fairly straight forward to access data for SQL Server from Access-
you can use the IMPORT function , and wrap it in a DTS.
Be careful, as there are datatypes in Access , that do not necessariliy
automatically convert to SQL server data types
3)For documentation- just do a google search on using: SQL server import
access


Jack Vamvas
___________________________________
Receive free SQL tips - www.ciquery.com/sqlserver.htm

[quoted text, click to view]

rmcompute
3/27/2006 3:54:02 PM
I will import the data once per week. I am currently using the following
command:
which takes about 2.5 minutes per table:

DoCmd.TransferDatabase acImport, "Microsoft Access", strPathFileIn, acTable,
"tblEmployees", "tblEmployees"

When I do the process manually, I click import and type the server and
directory. It takes over two minutes to connect to the server but once
connected, I can click on all four tables and import them immediately.

Is there a way to programatically sign in once and import more than one
table ?


[quoted text, click to view]
AddThis Social Bookmark Button