Digikam/Check Database

    From KDE UserBase Wiki
    Revision as of 12:52, 4 July 2019 by Ognarb (talk | contribs) (formatting)
    (diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
    Other languages:

    Check and Optimize digiKam’s Databases

    Transcribed from Dmitri Popov's blog, 19 December 2011

    By default, digiKam uses two SQLite databases for storing essential data: digikam4.db and thumbnails-digikam.db. And to make the application run fast and smoothly, it’s a good idea to check and optimize the databases every now and then. To do this on Ubuntu or its derivatives, you need to install the sqlite3 package using the sudo apt-get install sqlite3 command. Once you’ve done that, back up the digikam4.db and thumbnails-digikam.db databases. Open then the terminal and switch to the directory where the databases are stored. First off, you should check the integrity of both databases using the following commands:

    sqlite3 -line digikam4.db 'pragma integrity_check;'
    sqlite3 -line thumbnails-digikam.db 'pragma integrity_check;'

    If both databases are in order, you should see the message

    integrity_check = ok

    To optimize the databases, run the two commands below:

    1-sqlite3 -line digikam4.db 'vacuum;'
    sqlite3 -line thumbnails-digikam.db 'vacuum;'

    Run then the integrity check once again to make sure that everything works properly, and you are done.