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 into one SQLite DB, having those very same 7 tables, but each table should have the combined data from all the three DBs. since I want to run queries across the 3 of them. What is the best, fastest way to do it.
Export each database do 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.
here is one way to merge two database with all tables of the same structure. I hope it could help.