Table documentation

B

Bruce

Does anyone know how to output the table documenter
information to any format other than a printed file? I
tried printing to a file but that turns out to be the
jibberish that a only a printer can read. I need a readable
output that I can manipulate.

Thanks
 
D

Duane Hookom

This depends on your version of Access. Access 97 and earlier allow you to
save the results as a file. Access 2000 and later automatically save the
information in a wizard mdb. On my system, the file and table is:
DATABASE=C:\Documents and Settings\Duane Hookom\Application
Data\Microsoft\Access\ACWZUSRT.MDT;TABLE=doc_tblObjects
To get a query of TableName, FieldName, FieldType, FieldSize use this sql:
SELECT doc_tblObjects.Name AS TableName, doc_tblObjects_1.Name AS FieldName,
doc_tblObjects_1.Extra2 AS FieldType, doc_tblObjects_1.Extra3 AS FieldSize
FROM doc_tblObjects AS doc_tblObjects_1 INNER JOIN doc_tblObjects ON
doc_tblObjects_1.ParentID = doc_tblObjects.ID
WHERE (((doc_tblObjects_1.TypeID)=11));
 

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

Top