开发者

compare/merge two ms access databases

开发者 https://www.devze.com 2022-12-10 02:03 出处:网络
I\'ve got two ms access .mdb files that I need to compare/merge. Any good tools out there for this? Any way to easily export both to ascii sql where I can use something like Beyon开发者_JS百科d Compar

I've got two ms access .mdb files that I need to compare/merge. Any good tools out there for this? Any way to easily export both to ascii sql where I can use something like Beyon开发者_JS百科d Compare?


You can just use the EXPORT command on the File menu to send data to data files. Alternatively, I think there is a Right-Click export option.

If you have a lot of tables, you can do this in VBA for Access as well. OTTOMH

Dim DB as Database
Dim Tbl as TableDef
Dim i as Integer
SET DB = CURRENTDB

For i = 0 to DB.TableDefs.Count -1
    Set Tbl = Db.TableDef (i)
    DoCmd.TransferDatabase acExport Tbl, "C:\Temp\" + Tbl.Name + ".CSV", ExportSpec
Next Tbl
0

精彩评论

暂无评论...
验证码 换一张
取 消