In Access 2003 how to see linked table path

Zilla

Board Regular
Joined
Nov 16, 2006
Messages
88
Office Version
  1. 2016
Platform
  1. Windows
Hi

I am using Access 2003 and when i select a table the full link path appears below the table. ( screen shot )

How can I bring that path up so I can copy the full path and email to someone. I know there is a way where you can bring up the table properties and view it but I cant figure out how to do that.

If anyone can help please let me know.

Thanks


http://imageshack.us/photo/my-images/863/pathf.png/
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
This query will return your table name and path so you can figure out how you want to make it work for you:

Code:
SELECT MSysObjects.Name, MSysObjects.Database
FROM MSysObjects
WHERE (((MSysObjects.Type)=6));
 
Upvote 0
Select the code Bob gave you.
Create a new query in Design view. When the table list comes up, don't select any tables -- just close the dialog.
At the left of the toolbar you should see a SQL button. Click that, paste Bob's code, then display the query result by clicking the Datasheet view.

Denis
 
Upvote 0
Select the code Bob gave you.
Create a new query in Design view. When the table list comes up, don't select any tables -- just close the dialog.
At the left of the toolbar you should see a SQL button. Click that, paste Bob's code, then display the query result by clicking the Datasheet view.

Denis

Thanks Denis for posting that. :)

thumbsup.png
 
Upvote 0
Hi

The person at work finally got back to me and showed me the way he does it.

Open the access file then go Tools->Analyze->Documenter You will see tabs for forms, reports, tables,
etc. go to Tables. Select the tables you want to see, then click OK.

These tables will show as a report, print them (if you want them).

This is actually all I need is a screen shot of the path.

I do appreciated everyone's response.
Thanks again
 
Upvote 0

Forum statistics

Threads
1,215,988
Messages
6,128,146
Members
449,427
Latest member
jahaynes

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top