PC Review


Reply
Thread Tools Rate Thread

Data store table properties

 
 
=?Utf-8?B?TWFyeQ==?=
Guest
Posts: n/a
 
      25th Jan 2006
How do I print the properties (data store) of the tables in my database.
 
Reply With Quote
 
 
 
 
Allen Browne
Guest
Posts: n/a
 
      25th Jan 2006
If you just want a list of the tables, try this query:

SELECT MsysObjects.Name FROM MsysObjects
WHERE (([Type] = 1) AND ([Name] Not Like "~*") AND ([Name] Not Like
"MSys*"))
ORDER BY MsysObjects.Name;

Include type 6 for linked tables, and 4 for ODBC linked tables.

If you wanted to know how to list the fields and their properties as well,
see:
http://allenbrowne.com/func-06.html

If you want to document them, there is a built-in documenter under:
Tools | Analyze
or a better one at:
http://home.bendbroadband.com/conrad.../csdtools.html

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Mary" <(E-Mail Removed)> wrote in message
news:79CE2F55-897D-423F-928C-(E-Mail Removed)...
> How do I print the properties (data store) of the tables in my database.



 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Add data to a table and store it for later use Irina Microsoft Access Database Table Design 2 15th Dec 2007 06:00 AM
Re: I can't store more data on my table ??what should I do Bill Mosca, MS Access MVP Microsoft Access 0 9th Jan 2007 07:16 PM
Re: I can't store more data on my table ??what should I do Joseph Meehan Microsoft Access 0 9th Jan 2007 07:15 PM
Hide data col in subform based access right & store data in table =?Utf-8?B?V2VsbGll?= Microsoft Access VBA Modules 1 27th Jul 2006 07:01 PM
SQL Server Store Procedure returning data from a temp table or a table variable to Access anasser Microsoft Access 1 21st Oct 2005 03:55 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:26 AM.