我需要知道如何快速分析大型MDB文件(大约1GB),看看哪些表导致它如此之大。是否有一些东西可以让我很容易地显示哪些表格负责多少数据。
答案 0 :(得分:2)
可能的一种情况是需要压缩mdb文件
您可以使用vbscript,只需设置正确的文件路径
' 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