A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Setting Up & Running Reports
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

List of the tables



 
 
Thread Tools Display Modes
  #1  
Old May 19th, 2004, 09:38 AM
Benn Vosloo
external usenet poster
 
Posts: n/a
Default List of the tables

How can I print a list of the tables in my data base?
  #2  
Old May 19th, 2004, 01:17 PM
Duane Hookom
external usenet poster
 
Posts: n/a
Default List of the tables

You can use SQL in a query like:
SELECT msysobjects.Name, msysobjects.Type
FROM msysobjects
WHERE Type IN (1,6);
Keep in mind that this will display system tables and may miss some ODBC
table (not sure).

--
Duane Hookom
MS Access MVP


"Benn Vosloo" wrote in message
...
How can I print a list of the tables in my data base?



  #3  
Old May 19th, 2004, 05:36 PM
Jim/Chris
external usenet poster
 
Posts: n/a
Default List of the tables

Thanks Duane,

I didn't post this but I will add it to my FAQ database. I
am sure I will need it someday.

Jim

-----Original Message-----
You can use SQL in a query like:
SELECT msysobjects.Name, msysobjects.Type
FROM msysobjects
WHERE Type IN (1,6);
Keep in mind that this will display system tables and may

miss some ODBC
table (not sure).

--
Duane Hookom
MS Access MVP


"Benn Vosloo" wrote

in message
...
How can I print a list of the tables in my data base?



.

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 10:51 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.