Differences between revisions 1 and 2
Revision 1 as of 2009-06-27 18:26:58
Size: 485
Editor: SamatJain
Comment:
Revision 2 as of 2009-06-27 18:45:21
Size: 499
Editor: SamatJain
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
{{{ {{{#!highlight sh

Compacting SQLite databases

On occasion SQLite databases need to be compacted. Data contained within a database may be much smaller than the file's actual disk usage (this can occur in certain situations where many rows are deleted). To compact all SQLite databases in your home directory:

   1 find ~ -name '*.sqlite' -exec sqlite3 '{}' 'VACUUM;' \;

Many applications are now using SQLite for storing data, such as Amarok, Firefox, etc.


CategoryCheetSheet

SamatsWiki: CheatSheet/SQLite (last edited 2019-02-11 00:37:07 by SamatJain)