MarkWilliamson
Programmer
There is a table within a MS ACCESS DB that is linked to an ORACLE table. How can I tell which table it is linked to ?
Thanks in advance to all who reply !!!
Thanks in advance to all who reply !!!
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public Sub Link_Source()
Dim db As DAO.Database
Dim tbl As DAO.TableDef
Set db = CurrentDb()
For Each tbl In db.TableDefs
If tbl.Attributes = dbAttachedODBC Then
Debug.Print tbl.Name, tbl.SourceTableName
End If
Next
End Sub