I need to know how to quickly analyse a large MDB file (about 1GB) to see which tables are causing it to be so big. Is there something that will easily allow me to show a breakdown of which tables are responsible for how much data.
+2
A:
One of possible scenarios is that mdb file needs to be compacted
You can use vbscript for that, just set correct file paths
' For Access 2000, use Application.9
'Set objAccess = CreateObject("Access.Application.9")
' Perform the DB Compact into the new mdb file
' (If there is a problem, then the original mdb is preserved)
objAccess.DbEngine.CompactDatabase strPathToMDB ,strCompactedDB
volody
2010-05-08 06:35:17
As well you can use Access application. Tools->Database Utilities->Compact Database
volody
2010-05-08 06:37:26