Reputation: 2651
How can I copy records from two Database, "db1.db" and "db2.db" with different column structure?
Upvotes: 1
Views: 390
Reputation: 34347
This will have to be done a table at a time, not a database at the time.
Since you mention the schema is different between source and destination, you will have to normalize this before making a copy. Most automated tools you might use will probably require the same schema to automate this process, or require you to map source columns to destination columns.
Upvotes: 1