Extensible Storage Engine
From Just Solve the File Format Problem
(Difference between revisions)
Dan Tobias (Talk | contribs) m |
(Updated broken link) |
||
Line 16: | Line 16: | ||
== Tools == | == Tools == | ||
− | * [https:// | + | * [https://github.com/libyal/libesedb libesedb] (tools for accessing ESE databases) |
== Links and references == | == Links and references == |
Revision as of 16:18, 12 January 2016
Extensible Storage Engine (ESE, EDB, ESEDB), also known as JET Blue (no connection with the airline) is a database engine from Microsoft used as the back-end database of a number of its products, and eventually a public API was released for it. .edb and .sdb files are used for database storage, and .stm for a streaming file. There are a number of different versions.
The method of database storage is ISAM (Indexed Sequential Access Method).
An earlier and slightly different Microsoft database engine is Jet Red, which supports file sharing.
File identification
These signature bytes appear at offset 4: ef cd ab 89
Tools
- libesedb (tools for accessing ESE databases)