Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How getting the name names of tables...

Status
Not open for further replies.

mgonzalez

Programmer
Aug 2, 2000
51
0
0
MX
Hi

I hope that something could help me.I want through SQL get the name of name of all tables in my database.I am working with access 97.Is this possible??? because I remember that for Oracle is it.

Best ragards
 
Excluding system tables:

Code:
SELECT MSysObjects.Name
FROM MSysObjects
WHERE (((MSysObjects.Name) Not Like "MSys*") AND ((MSysObjects.Type)=1));

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top