Linked tables

A

Akrt48

I cannot see where my linked tables are linked to, and of course I have
forgotten which database I used. I go to tools, db utilities and linked
table manager but nothing is showing up. I have 6 tables that are linked,
can anyone tell me how else to see the links. Thanks
 
J

Jerry Whittle

SELECT MSysObjects.ForeignName, MSysObjects.Database, MSysObjects.Type
FROM MSysObjects
WHERE (((MSysObjects.Type)=6));
 
Top