Data store table properties

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I print the properties (data store) of the tables in my database.
 
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/conradsystems/accessjunkie/csdtools.html
 

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

Back
Top