Digikam/Check Database/de: Difference between revisions

From KDE UserBase Wiki
(Created page with "== Überprüfen und optimieren der digiKam Datenbank == Transcribed from Dmitri Popov's blog, 19 December 2011")
(Created page with "Im Ausgangszustand nutzt '''digiKam''' zwei ''SQLite Datenbanken'', um benötigte Daten zu speichern: ''digikam4.db'' und ''thumbnails-digikam.db''. Um die Anwendung schnell und ...")
Line 4: Line 4:
Transcribed from Dmitri Popov's blog, 19 December 2011
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 <tt>sqlite3</tt> package using the <code>sudo apt-get install sqlite3</code> 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:
Im Ausgangszustand nutzt '''digiKam''' zwei ''SQLite Datenbanken'', um benötigte Daten zu speichern: ''digikam4.db'' und ''thumbnails-digikam.db''. Um die Anwendung schnell und ''rund'' laufen zu lassen, ist es sinnvoll diese Datenbanken von Zeit zu Zeit zu überprüfen und zu optimieren. Um dies in Ubuntu (oder seinen Abkömmlingen) durchzuführen, muss das <tt>sqlite3</tt> Paket mit dem folgende Befehl installiert werden: <code>sudo apt-get install sqlite3</code>


{{Input|1=sqlite3 -line digikam4.db 'pragma integrity_check;'
{{Input|1=sqlite3 -line digikam4.db 'pragma integrity_check;'

Revision as of 08:19, 22 February 2012

Other languages:

Überprüfen und optimieren der digiKam Datenbank

Transcribed from Dmitri Popov's blog, 19 December 2011

Im Ausgangszustand nutzt digiKam zwei SQLite Datenbanken, um benötigte Daten zu speichern: digikam4.db und thumbnails-digikam.db. Um die Anwendung schnell und rund laufen zu lassen, ist es sinnvoll diese Datenbanken von Zeit zu Zeit zu überprüfen und zu optimieren. Um dies in Ubuntu (oder seinen Abkömmlingen) durchzuführen, muss das sqlite3 Paket mit dem folgende Befehl installiert werden: sudo apt-get install sqlite3

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.