---------------------------
-- source:
---------------------------
-- ERROR 1: Unable to fetch list of tables: malformed database schema (2017-01-09T05:49:28.553Z) - no such table: street_segments_1920
-- listing of table-rows shows something similar to the results of : SELECT * FROM sqlite_master WHERE type='table';
---------------------------
-- Create a Sql-Dump of the malformed database:
-- sqlite3 20170108.berlin_admin_geometries.malformed.db < correct.malformed_database.sql
---------------------------
-- Restore the malformed Database from the Sql-Dump:
-- sqlite3 20170108.berlin_admin_geometries.corrected.db < dump.malformed_database.sql
---------------------------
.mode insert
.output dump.malformed_database.sql
.dump
.exit
---------------------------