I have 3 sqlite3 database files, from 170G to 1.07T on my CentOS 7 sever. I can create dump files by sqlite3 logs.db .dump > logs.sql but these sql files can't be imported to MySQL because of syntax.
I've read these solutions:
Quick easy way to migrate SQLite3 to MySQL?
http://www.sqlite.org/cvstrac/wiki?p=ConverterTools
http://www.redmine.org/boards/2/topics/12793
https://realpython.com/blog/python/web2py-migrating-from-sqlite-to-mysql/
https://github.com/athlite/sqlite3-to-mysql
I tried some of them but it seems not working. I don't have enough memory for the string searching and replacement.
Is there some effective way for large sqlite databases to be migrated?