>From: Domingo Alvarez Duarte >I have a question, is it enough to vacuum a database to update to the new >page size ?
Apparently all you need to is "pragma page_size=4096; vacuum;" using the appropriate page size. This makes very easy to convert any(all) database(s) with a single command from the command-line, like so (Win7 example): for %i in (*.db) do sqlite3 %i "pragma page_size=4096; vacuum;"