Fastest Way merge two SQLITE Databases

后端 未结 2 515
名媛妹妹
名媛妹妹 2021-02-02 14:48

I have 3 SQLite DBs, each having exactly the same set of 7 tables with respect to table structure. [They are Log Dumps from 3 different Machines].

I want to combine them

2条回答
  •  离开以前
    2021-02-02 15:17

    Export each database to an SQL dump and then import the dumps into your new combined database.

    For GUIs have a look at http://www.sqlite.org/cvstrac/wiki?p=ManagementTools

    For example, with SQLiteStudio that will be Database > Export the database: Export format: SQL > Done.

提交回复
热议问题