ADP or Linked Tables?

pozzo

Registered User.
Local time
Today, 04:32
Joined
Jan 23, 2004
Messages
26
With MS SQL Server what is more efficient, Access Data Projects or Linked Tables?
 
Niether is more efficient, it's how you write your queries and design your schema that determines efficiency.
 
Technically OLEDB connectivity of an ADP could have a small edge - but the difference between that and your ODBC linked tables should be tiny compared to whether or not you're making well formed requests for data.

An ADP will, at least, force you to think in server querying terms - which is an important habit to get into regardless of the platform you choose.
Linked Tables can leave open the door for sloppy, client side processing requests for the unwary.
(Since you're asking about efficiency I'll not mention the convenience and advantages that Linked Tables can offer - well... OK how about just one - Appending records en masse from local or other linked tables using Jet instead of an iterative process in code or having to perform a server base import.)

So, ultimately, to agree with SQL_Hell, I wouldn't make your decision based on inherent efficiency of the underlying technologies. Make it for a variety of reasons - but always make your requests well formed.
 
ADP or Linked Tables

Many thanks for your anwers, LPurvis and SQL_Hell. Now I have a better idea.
 

Users who are viewing this thread

Back
Top Bottom