Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In the sqlite3 command line tool I dropped a table:

sqlite> DROP TABLE tableName;

It's a pretty big large table, so I would expect the sqlite file size to drop considerably. However, it hasn't changed at all.

What is the proper way to purge this table from the database completely?

share|improve this question

1 Answer

up vote 4 down vote accepted

The size of the file does not shrink when you delete a table in SQLite, you have to explicitely ask for it.

More info in the FAQ : http://www.sqlite.org/faq.html#q12

There are also some options to configure your database to have auto-vacuum enabled, you can find more info in the documentation of the VACUUM keyword here : http://www.sqlite.org/lang_vacuum.html and the PRAGMA option here : http://www.sqlite.org/pragma.html#pragma_auto_vacuum

share|improve this answer
VACUUM does the trick, thanks! I somehow glimpsed over the FAQ on this issue :) – Yuval Adam Dec 15 '12 at 11:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.