I want to retreive the table names on a database (either Access97 or 2000) but am having trouble finding out the system table names that contain this info.<br>
<br>
Can anyone help ?
The hidden system table is MSysObjects.<br>
<br>
Below is a query which will list the tables in you db :<br>
<br>
SELECT DISTINCTROW MSysObjects.Name, MSysObjects.Type<br>
FROM MSysObjects<br>
WHERE (((MSysObjects.Type)=6));<br>
<br>
WP <p>Bill Paton<br><a href=mailto:wpaton@neptune400.co.uk>wpaton@neptune400.co.uk</a><br><a href=
Bill Paton,<br>
<br>
Thanks for your remarkably swift reply.<br>
<br>
I don't unfortunately seem to have read permission on MSysObjects so I may have to find another way.<br>
<br>
Martin Davey <br>
from Basingstoke.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.