Nov 2, 2006 #1 dbadmin Programmer Jan 3, 2003 147 US Hi Gurus, Is there any way to access another MS Access database from the current access database using sql? or do I need to do VBA coding? Thanks, dbadmin
Hi Gurus, Is there any way to access another MS Access database from the current access database using sql? or do I need to do VBA coding? Thanks, dbadmin
Nov 2, 2006 #2 jsteph Technical User Oct 24, 2002 2,562 US You can Link Tables, ie, go to File, Get External Data...Link Tables. --Jim Upvote 0 Downvote
Nov 2, 2006 Thread starter #3 dbadmin Programmer Jan 3, 2003 147 US Thank You! dbadmin Upvote 0 Downvote
Nov 3, 2006 #4 formerTexan Programmer Apr 10, 2004 504 US You can also do it in conjunction with the use of the ADO ConnectionString property. Cheers, Bill Upvote 0 Downvote
Nov 3, 2006 #5 Remou Technical User Sep 30, 2002 13,030 BE You can use SQL too, [tt]SELECT ID FROM tblTable IN 'C:\Docs\Tek-Tips.mdb'[/tt] Upvote 0 Downvote