Trying the easy approach:
sqlite2 mydb.db .dump | sqlite3 mydb-new.db
I got this error:
SQL error near line 84802: no such column: Ð
In that line the script is this:
INSERT INTO vehiculo VALUES(127548,'21K0065217',Ñ,'PA007808',65217,279,1989,3,468,'1998-07-30 00:00:00.000000','14/697/98-07',2,'',1);
My guess is that the 'Ñ' without quotes is the problem.
any idea?
PD: I'm under Windows right now and I would like to use the command-line so it can be automatized (this process will be done on daily basis by a server).