I am having the hardest time trying to pull related records from an oracle database and an access database. I tried at first to link the oracle table inside of Access and that worked for a while. Now I am getting timeout problems with ODBC.
Preferrably without cycling thru one recordset to read the other is there anyway to open multiple connections and select from a table in each?
Here is an example select:
"SELECT AccessTbl.mbr_no, AccessTbl.MRN, OracleTbl.COLLECTION_DATE, OracleTbl.TEST, " & _
" FROM AccessTbl LEFT JOIN OracleTbl ON AccessTbl.Make8 = OracleTbl.MRN " & _
"WHERE ..."
Thanks
Preferrably without cycling thru one recordset to read the other is there anyway to open multiple connections and select from a table in each?
Here is an example select:
"SELECT AccessTbl.mbr_no, AccessTbl.MRN, OracleTbl.COLLECTION_DATE, OracleTbl.TEST, " & _
" FROM AccessTbl LEFT JOIN OracleTbl ON AccessTbl.Make8 = OracleTbl.MRN " & _
"WHERE ..."
Thanks