Reviving completely messed up evolution
Sunday, September 18, 2011 12:07:42 PM
After googling a lot, removing indexes to regenerate them and other actions... I found the way to fix it:
$ locate folders.db
-> and remove all of them to get them regenerated, after that, all is working ok again

Finally, I run:
for i in `find . -name folders.db`
do
echo "Rebuilding Table $i"
sqlite3 $i "vacuum;"
done
to get evolution starting fast again (vacuum still seems to be required from time to time to improve startup performance... but it's a different topic, not sure if upstream is aware of this
)

Unregistered user # Saturday, October 1, 2011 6:40:19 AM