Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsFormsForms ProgrammingQueriesModules / DAO / VBAReports / PrintingMacrosDatabase DesignSecurityConversionImporting / LinkingSQL Server / ADPMultiuser / NetworkingReplicationSetup / ConfigurationDeveloper ToolkitsActiveX ControlsNew UsersGeneral 1General 2
Access DirectoryToolsTutorialsUser Groups
Related Topics
SQL ServerOther DB ProductsMS OfficeMore Topics ...

MS Access Forum / Database Design / May 2004

Tip: Looking for answers? Try searching our database.

Tables in use?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Stephen - 27 May 2004 20:16 GMT
I'm looking for a way to know if a table is used in queries, forms, reports and macros
I'm using Access 2000

I've got more than 500 tables and more than 700 forms... very long job to check them one by one
I've got to do some cleaning and i don't know the application very well yet.
Kevin3NF - 27 May 2004 21:13 GMT
I have heard good things about:
http://www.fmsinc.com/products/access.asp

I have used and like:
http://www.moshannon.com/speedferret.html

Alternatively (and free):
Tools>>Analyze>>Documenter, select everything but the tables, run the
report, export to word, and CTRL-F

Signature

Kevin Hill
President
3NF Consulting

www.3nf-inc.com/NewsGroups.htm
www.DallasDBAs.com/forum - new DB forum for Dallas/Ft. Worth area DBAs.

> I'm looking for a way to know if a table is used in queries, forms, reports and macros.
> I'm using Access 2000.
>
> I've got more than 500 tables and more than 700 forms... very long job to check them one by one.
> I've got to do some cleaning and i don't know the application very well yet.
pdm - 30 May 2004 21:31 GMT
I use the following for queries.  I had another for code etc but didn't finish it.  If you name all your queries on form/report controls and use only queries in code then it should probably do most of it

Public Function QryDepChk(sLikeText As String) As Boolea
'Finds queries with given subquery or table in the
'31/10/0
   Dim qdf As DAO.QueryDe
 
   Debug.Print "Query dependencies: queries containing '"; sLikeText; "'
   Debug.Print "***********************************************
   For Each qdf In CurrentDb.QueryDef
     If qdf.SQL Like "*" & sLikeText & "*" And qdf.Name <> sLikeText Then Debug.Print qdf.Nam
   Next qd
   Set qdf = Nothin
End Function
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.