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!

Get table names fro an MS-Access DB

Status
Not open for further replies.

Byourself

Programmer
Jul 5, 2002
18
0
0
IL
Is there a way to get the table names from an MS-Access database by SQL only?

I know that in Oracle, for instance, that will be accomplish easily (SELECT table_name from tabs...)

Thanks,
Shay
---------------
"We'll never give up, it's no use" (Blink 182)
 
Try this statement

SELECT * from MSysObjects where type = 1


This will return system tables also. From what I see the Flags column is alway 0 for tables you created. You should check this too.

Thanks,

Gabe
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top