Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

-shm and -wal files in SQLite DB

I am taking the backup of SQLite DB using cp command after running wal_checkpoint(FULL). The DB is being used in WAL mode so there are other files like -shm and -wal in my folder. When I run wal_checkpoint(FULL), the changes in WAL file get committed to the database. I was wondering whether -wal and -shm files get deleted after running a checkpoint. If not, then what do they contain ?

I know my backup process is not good since I am not using SQLite backup APIs. This is a bug in my code.

like image 959
Manik Sidana Avatar asked Oct 17 '12 06:10

Manik Sidana


People also ask

Can we use and in SQLite?

The AND operator allows the existence of multiple conditions in a SQLite statement's WHERE clause. While using AND operator, complete condition will be assumed true when all the conditions are true. For example, [condition1] AND [condition2] will be true only when both condition1 and condition2 are true.

Can you store files in an SQLite database?

The Android SDK provides dedicated APIs that allow developers to use SQLite databases in their applications. The SQLite files are generally stored on the internal storage under /data/data/<packageName>/databases. However, there are no restrictions on creating databases elsewhere.

Which method create and or open a database in SQLite?

Create and/or open a database that will be used for reading and writing. The first time this is called, the database will be opened and onCreate(SQLiteDatabase) , onUpgrade(SQLiteDatabase, int, int) and/or onOpen(SQLiteDatabase) will be called.

What is .SQLite file?

SQLite is an embedded SQL database engine that requires no configuration and reads and writes directly to ordinary disk files. A complete SQL database with tables, indexes, triggers, and views, is contained in a single disk file. The engine, and thus the file format, support a full-featured SQL implementation.


1 Answers

After searching through numerous sources, I believe the following to be true:

  1. The -shm file contains an index to the -wal file. The -shm file improves performance when reading the -wal file.
  2. If the -shm file gets deleted, it get created again during next database access.
  3. If checkpoint is run, the -wal file can be deleted.

To perform safe backups:

  1. It is recommended that you use SQLite backup functions for making backups. SQLite library can even make backups of an online database.
  2. If you don't want to use (1), then the best way is to close the database handles. This ensures a clean and consistent state of the database file, and deletes the -shm and -wal files. A backup can then be made using cp, scp etc.
  3. If the SQLite database file is intended to be transmitted over a network, then the vacuum command should be run after checkpoint. This removes the fragmentation in the database file thereby reducing its size, so you transfer less data through network.
like image 113
Manik Sidana Avatar answered Sep 20 '22 19:09

Manik Sidana