vote up 1 vote down star
1

I have to document an MS Access database with many many macros queries, etc. I wish to use code to extract each SQL query to a file which is named the same as the query, eg if a query is named q_warehouse_issues then i wish to extract the SQL to a file named q_warehouse_issues.sql

I DO NOT WISH TO EXPORT THE QUERY RESULT SET, JUST THE SQL!

I know I can do this manually in Access, but i am tired of all the clicking, doing saveas etc.

flag
Personally I'd just export the query names and document what they are used for. Rather than the complete SQL string. All documentation gets out of date rather rapidly in such situations as the folks working on the database have much better things to do than remember to save the query string each time they make changes. – Tony Toews Aug 15 at 1:51

2 Answers

vote up 4 vote down check

This should get you started:

  Dim db As DAO.Database
  Dim qdf As DAO.QueryDef

  Set db = CurrentDB()
  For Each qdf In db.QueryDef
    Debug.Print qdf.SQL
  Next qdf
  Set qdf = Nothing
  Set db = Nothing

You can use the File System Object or the built-in VBA File I/O features to write the SQL out to a file. I assume you were asking more about how to get the SQL than you were about how to write out the file, but if you need that, say so in a comment and I'll edit the post (or someone will post their own answer with instructions for that).

link|flag
David, thanks very much. That is just what i needed (how to get the SQL). Should make life easy... – Pieter Nienaber Aug 14 at 1:38
@Pieter Will you mark this answer Accepted? – HansUp Aug 14 at 2:14
Only just found out how to mark it. It was not obvious, but StackOverflow is great! – Pieter Nienaber Aug 19 at 0:03
vote up 0 vote down

I would like to see the additional code to write to a file. Could you provide it?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.