Home  Fees/Services  Access Examples  Tutorials  Access Download  Articles  Search  Contact  Privacy  Links

Access Query Examples
External Table Dynamic Linking
SQL Dynamic Table Linking

Programmable Link to External Databases Tutorial SQL Queries

Access Database Tutorials>SQL Queries>External Database Links

Download Access Program


Aggregate Functions
Child/Parent Table Query
Choose Function
SQL Choose Function +
Crosstab/Pivot Query
SQL Crosstab Query +
DateTime Query
SQL Delete Query
External Link to Tables
Filter Report Records
Group By Clause
Having Clause Query
Histogram Query
Insert Into Query/Append
Master/Detail Updates
SQL Order By Dynamic
Parameter Query
SQL Predicate Example
Self Join Query
Access Scalar Query
Select Statement
Select Top 1 Query
Union Query Example
Update Query Example


External Table Links in Microsoft Access

Using a external table links is a neat trick which allows you to forego the need for permanently linking tables between a front end and back end Access database setup.

Access dynamic table linking works by using IN followed by a path and database name will retrieve the data dynamically.  If you put this query in VBA (password protected) then the user will not know where the data is coming from.   You won't have to worry about locking up the database objects which makes database updates/maintenance a bit cumbersome.

Access external table linking code:

SELECT Customer_ID, Sales_Rep_ID
FROM m_customer_orders IN 'p:\database\shoe_orders_data.mdb';

Another great way to use the external table links technique is when you have an 'active database' and an 'archive database'  the user can dynamically switch between the two with an option on a form and a little VBA to create the alternate path to the data using dynamic table links.

We have attempted to make the external link a variables - as a global variable or a form field variable.  However, we could not get a variable external link to work.  Let us know if you have found a way to make the path to the external database variable.

Future examples will show how to create a temporary Access database and then create temporary tables in the database for processing and report generation - this technique eliminates front end database bloat.


 

We now offer web-based SQL/Server application development in partnership with Integrated Databases, Inc. (new projects only).



Contact Information

SQL Queries
MS Access SQL Queries 2007 2003 2000  All Windows Versions