Search found 2 matches
- August 12th, 2024, 3:44 pm
- Forum: General Help
- Topic: How to merge history.db ?
- Replies: 2
- Views: 3997
Re: How to merge history.db ?
I can't post URLs, but there's another topic with the title "Combining Histories from 3 installations" (at ID 132384). I put some notes there that may help in case anyone finds this.
- August 12th, 2024, 3:41 pm
- Forum: General Help
- Topic: Combining Histories from 3 installations
- Replies: 3
- Views: 4352
Re: Combining Histories from 3 installations
So I went through this process and learned a few things to share in case anyone else runs into issues. Before merging, just try re-creating a single DB, with no merging at all: $ cp history1.db history1.db.bak $ sqlite3 history1.db .dump > /tmp/dump1.sql $ sqlite3 new_history1.db < /tmp/dump1.sql $ ...