J
jutlaux
I have a query that is linked to a table (tblDOTID) in another Database
(Lookup.mdb) that is set up with the IN clause as shown in the SQL code
below. Both of these database are access 2003 versions.
SELECT DISTINCT tblDOTID.strDOTID, tblDOTID.strSKU, tblDOTID.strCustomer,
tblDOTID.strSkidGroup, tblDOTID.strBrand_Desc, tblDOTID.strBrand_Code,
tblDOTID.strSize_Code, tblDOTID.dteAuth_Date
FROM tblDOTID IN 'N:\BlueClient\Lookup.mdb';
The problem I have is that the path to the Lookup.mdb database is constantly
changing. How can I make this path a dynamic variable say in a table or some
other way?
(Lookup.mdb) that is set up with the IN clause as shown in the SQL code
below. Both of these database are access 2003 versions.
SELECT DISTINCT tblDOTID.strDOTID, tblDOTID.strSKU, tblDOTID.strCustomer,
tblDOTID.strSkidGroup, tblDOTID.strBrand_Desc, tblDOTID.strBrand_Code,
tblDOTID.strSize_Code, tblDOTID.dteAuth_Date
FROM tblDOTID IN 'N:\BlueClient\Lookup.mdb';
The problem I have is that the path to the Lookup.mdb database is constantly
changing. How can I make this path a dynamic variable say in a table or some
other way?