how can i get all tables names from MS Access Database

O

omer kamal

Dear all,

Is there any way to display all tables names fom .mdb?

like " SELECT allTableNames FROM DataBaseName"

Regards,
Omer Kamal
 
D

Douglas J. Steele

SELECT MSysObjects.Name
FROM MSysObjects
WHERE (((MSysObjects.Name) Not Like "msys*") AND ((MSysObjects.Type) In
(1,4,6)))
ORDER BY MSysObjects.Name;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top