.DB-SHM ファイル拡張子

SQLite Database Shared Memory File

開発元 SQLite
人気度
3.4  |  76 
 

DB-SHMファイルとは?

A DB-SHM file is a temporary file generated by SQLite, a lightweight database engine commonly used within mobile and desktop applications. In Write-Ahead Logging (WAL) mode, an SQLite database engine references information in DB-SHM files to manage shared memory access for the main SQLite database, ensuring different processes, such as multiple application components concurrently accessing data, can interact with the database efficiently and consistently.

詳細情報

SQLite's Write-Ahead Logging (WAL) mode is a journaling mode designed to improve database writing performance while maintaining data integrity. Typically, any changes made to a database are written directly to the main database file.

However, in WAL mode, the SQLite database engine automatically generates a .DB-WAL file to store data writes, allowing the main database to remain unaltered during the write process. The engine also generates a DB-SHM file to store data for tracking reader-writer states, checkpoint statuses, and transaction control, allowing multiple connections to the main database to synchronize. For example, if you have a primary database file named mydb.db, the SQLite engine may automatically generate mydb.db-shm and mydb.db-wal files while the database is in use.

By generating DB-WAL and DB-SHM files in WAL mode, the SQLite engine keeps the database accessible for reading by other processes while writes are pending, significantly improving performance in applications with high read-write demands. Additionally, DB-SHM and DB-WAL files may appear in an application's data storage directories, particularly in apps that utilize SQLite databases for handling large amounts of data or complex data operations across different processes.

注: SQLite introduced WAL mode in 3.7.0 in July 2010.

DB-SHMファイルの開き方

You should not attempt to open DB-SHM files since they serve as supplemental, non-essential files for the primary database. When the application or database connection is closed, you can safely delete these temporary files if they persist.

File Viewer Plusで400種類以上のファイル形式を開けます。無料ダウンロード

DB-SHMファイルを開く、または参照するプログラム

Windows
無料
Mac
無料
Linux
無料

検証者 FileInfo.com

FileInfo.comチーム は、このページに掲載されているSQLite Database Shared Memoryファイル形式とMac, Windows, and Linuxアプリについて独自に調査しました。 私たちの目標は100%の正確性であり、検証済みのファイルタイプに関する情報のみを公開しています。

このページへの追加や更新をご提案いただける場合は、お知らせください。