source of the linked table

  • Thread starter Thread starter sq75222
  • Start date Start date
S

sq75222

In the object table, I can see there is a linked table but how do I know the
actual table located?
 
Go to Tools, Database Utilities, Linked Table Manager. The file path should
appear next to it
Evi
 
SELECT MSysObjects.[Name],
MSysObjects.[Database],
MSysObjects.[Connect]
FROM MSysObjects
WHERE MSysObjects.[Type]=6
ORDER BY MSysObjects.[Name];
 
When you tick next to the Linked table, and click OK, if the original table
has moved, a File, Open box will appear so that you can browse to its new
location. If the original table is still in place you could delete your
current linked table and import it from your preferred location, ensuring
that you import it as a link.
Evi
 
Back
Top