Apr 7, 2003 #1 emann IS-IT--Management Joined Apr 7, 2003 Messages 1 Location US I am hoping to find a tool that can print out a list of path names for each linked table in an Access database. Anyone out there with such a beast???
I am hoping to find a tool that can print out a list of path names for each linked table in an Access database. Anyone out there with such a beast???
Apr 7, 2003 #2 coco86 Programmer Joined Mar 13, 2002 Messages 296 Location DE How about this... Create a report with the recordsource: SELECT MSysObjects.Name, MSysObjects.Database AS Path FROM MSysObjects WHERE (((MSysObjects.Type)=6)); Upvote 0 Downvote
How about this... Create a report with the recordsource: SELECT MSysObjects.Name, MSysObjects.Database AS Path FROM MSysObjects WHERE (((MSysObjects.Type)=6));