Fact-checked by Grok 2 weeks ago

Extensible Storage Engine

The Extensible Storage Engine (ESE), also known as JET Blue, is an advanced indexed sequential access method (ISAM) database engine developed by for storing and retrieving structured data in tables using flat binary files. It operates in user mode, providing high-performance access through the esent.dll library included in Windows, and supports databases ranging from 1 MB to over 1 TB in size, with common implementations exceeding 50 GB. Introduced with as a successor to earlier technologies, ESE was designed to handle denormalized schemas, including wide tables and sparse or multi-valued columns, distinguishing it from the Red engine used in . Key features include full transaction compliance, robust crash mechanisms, snapshot isolation for concurrent operations, and efficient data caching to optimize in lightweight, embedded scenarios. Its architecture emphasizes local, single-process access without built-in remote capabilities, though file sharing via is possible but not recommended for production use. ESE powers critical components in several Microsoft products, serving as the core database engine for to manage email and calendar data, Domain Services (AD DS) and (LDAP) Directory Services (LDS) for directory storage, and for indexing files in the Windows.edb database. In February 2021, open-sourced ESE under the , making its source code available on to facilitate broader development and contributions while maintaining its role in proprietary Windows ecosystem applications. ESE continues to evolve with Windows updates, including support for 32k page databases in as of 2025 to enhance scalability. This release highlighted ESE's maturity and reliability, having evolved over two decades to support high-concurrency workloads in enterprise environments.

Introduction and History

Overview

The Extensible Storage Engine (ESE), also known as JET Blue, is an indexed method (ISAM) database engine developed by for storing and retrieving data from tables in a logical sequence. It serves as a high-performance, transactional storage solution primarily for embedded use within applications, powering critical components such as , , and . Key characteristics of ESE include its embeddable design, which integrates via a lightweight directly into application processes without requiring a separate , and its multi-threaded that enables concurrent to multiple . The engine supports full (Atomicity, , , ) transactions, ensuring reliable data management even in failure scenarios, while handling large-scale datasets with low overhead—typically scaling to over 50 GB and up to 1 TB in demanding environments. ESE utilizes file-based storage, with primary data housed in .edb database files and transaction logs maintained in .log files to facilitate and consistency. Evolved from Microsoft's original , it introduces enhanced extensibility, permitting the definition of custom column types and indexes tailored to specific application requirements.

Development History

The Extensible Storage Engine (ESE), originally known as JET Blue, was developed in the early 1990s by as a high-performance successor to the JET Red , which powered , though it ultimately found primary use in server applications rather than desktop ones. It was first shipped as a Windows component with in 1995, providing an embedded indexed sequential access method (ISAM) for data storage and retrieval. ESE saw early adoption in 4.0, released in 1996, where it served as the core database engine for email and messaging data management. This integration continued with Exchange Server 5.0 in 1997, enhancing transactional reliability and scalability for enterprise environments. By 2000, ESE became integral to Windows 2000's , storing directory objects in a robust, multi-user format that supported domain management at scale. Subsequent major versions of Exchange brought significant ESE enhancements; Exchange Server 2003 introduced improved storage optimizations for larger deployments, while Exchange Server 2010 delivered key performance gains, including better I/O efficiency and high-availability features for databases exceeding traditional limits. These updates solidified ESE's role in handling terabyte-scale data across products. A pivotal milestone occurred in February 2021, when open-sourced ESE on under the , releasing the codebase for community review and contributions after more than 25 years of proprietary development. This move enabled broader adoption via its public , allowing third-party developers to integrate ESE into custom applications for embedded, transactional needs. As of 2025, ESE continues to evolve, with Windows Server 2025 introducing support for 32 KB database pages in —doubling the previous 8 KB size—to accommodate larger databases, reduce I/O overhead, and improve query performance in modern infrastructures. These advancements have extended ESE's capabilities to petabyte-scale operations in cloud-based deployments, such as managed environments.

Core Architecture

Databases

In the Extensible Storage Engine (ESE), a database serves as the primary container for , consisting of a single main file typically named with a .edb extension that encapsulates multiple tables. This file acts as the fundamental unit for database operations, including mounting and unmounting, which are essential for making the database accessible to the engine, as well as defining the scope for transactions to ensure atomicity and consistency. Databases are created using API functions such as JetCreateDatabase or JetCreateDatabase2, which initialize the .edb file and attach it to an ESE instance for immediate use. Management involves attaching existing databases via JetAttachDatabase or JetAttachDatabase2, allowing up to six databases to be simultaneously attached to a single instance for concurrent access by multiple sessions within the same process. ESE supports multi-instance configurations through JetEnableMultiInstance, enabling scalability by running multiple independent database engines in parallel, which is particularly useful for high-throughput server applications. All subsequent data operations, such as creating tables or inserting records, must be performed within the context of an attached and opened database instance, obtained via JetOpenDatabase after attachment. The database structure relies on several key file components for integrity and recovery: the primary .edb file stores the persistent data pages, transaction log files with a .log extension record all changes for durability, and checkpoint files (.chk) mark recovery points to facilitate crash recovery by indicating the last consistent state. In modern versions of ESE, each database supports a maximum size of approximately 16 terabytes, providing substantial capacity for large-scale data storage while maintaining performance through efficient page management. Transactional consistency is enforced at the database level, ensuring that operations across tables remain isolated and durable.

Tables

In the Extensible Storage Engine (ESE), tables serve as the primary organizational units within a database, consisting of collections of records structured according to a predefined that specifies column definitions and constraints. Tables are created using calls such as JetCreateTable or the more comprehensive JetCreateTableColumnIndex3, which utilizes the JET_TABLECREATE3 structure to define the table's properties, including an array of column creations (rgcolumncreate) and initial indexes (rgindexcreate). During creation, the table is opened exclusively for the calling session, returning a JET_TABLEID handle for subsequent read or write access, with modes specified via grbit flags to control behaviors like allowing simultaneous updates or fixed enforcement. Tables support both fixed and variable record layouts, determined by the types of columns defined—fixed-length columns result in records of uniform size, while variable-length columns (such as those for text or binary data) allow records to vary in size to optimize storage efficiency. A key requirement for every table is the presence of exactly one primary index, which serves as a unique clustered index organizing the records in a B+ tree structure and must be declared before the first data update; if omitted during creation, ESE automatically generates a sequential primary index based on insertion order. Tables also accommodate multiple secondary indexes, created via JET_INDEXCREATE structures, which provide alternative ordering and fast lookups by pointing to records using the primary key, without inherent uniqueness enforcement unless specified. An ESE database can house one or more user-defined tables, with support for schemas containing a large number—potentially hundreds—of tables, managed through instance parameters like JET_paramCachedClosedTables to cache table schemas for efficient access. While ESE does not provide built-in foreign key constraints, inter-table relationships are maintained through application logic, often leveraging secondary indexes that reference primary keys across tables to enforce referential integrity. From a performance perspective, ESE employs -level locking granularity to manage concurrency, ensuring that operations on a are isolated during transactions while allowing finer-grained access within the via indexes. Space allocation for occurs in fixed-size pages, with the initial number of pages configurable via the ulPages field in JET_TABLECREATE3 (values greater than 1 help reduce fragmentation), and density controlled by ulDensity (ranging from 20-100%, defaulting to 80% for balanced space utilization). The database page size is set at the instance level, typically defaulting to 8 but configurable up to 32 to accommodate larger records and improve I/O efficiency in high-throughput scenarios.

Data Model

Records and Columns

In the Extensible Storage Engine (ESE), data is organized into records within tables, where each record represents a row consisting of a tuple of column values, providing a row-based structure for storing related information. Records can have fixed-length or variable-length formats depending on the column definitions, and they are physically stored in pages organized by B+ trees keyed on the primary index to facilitate efficient access. Insertion and modification of records are performed through the ESE using cursor-based operations. To insert a new record, an application calls JetPrepareUpdate with the JET_prepInsert option to prepare the operation, optionally sets column values via JetSetColumn or JetSetColumns, and finalizes with JetUpdate, which assigns default values to unset columns and generates values for auto-increment columns if defined. For updating an existing record, JetPrepareUpdate is invoked with JET_prepReplace on the current cursor position, followed by setting the desired column values and calling JetUpdate to apply the changes. Retrieval of record data occurs via JetRetrieveColumn or JetRetrieveColumns on the positioned cursor. Columns in ESE store values of specific types, forming the basic units of within . Each column supports null values, which occupy no storage space in tagged columns, and default values that are applied automatically during record insertion if not explicitly set. Record navigation supports both , following the logical order defined by the current or insertion sequence, and indexed access using operations on primary or secondary indexes via cursors. For , ESE optionally includes a version column per , which is automatically incremented during updates to detect conflicts in multi-user scenarios. Space management for records involves allocating pages within the structure, with large records or long column values extending into additional overflow pages when exceeding the standard page size. to reclaim space and optimize layout is performed offline using the JetDefragment API function, which reorganizes data without allowing concurrent access. Advanced column variants, such as multi-valued or long-text types, build on these basics but are handled separately.

Column Types and Variants

The Extensible Storage Engine (ESE) supports a range of column types defined by the JET_COLTYP , enabling storage of diverse data from simple s to large binary objects. Basic types include JET_coltypBit for values (true, false, or , stored in 1 byte), JET_coltypShort for 16-bit signed integers (-32,768 to 32,767), JET_coltypLong for 32-bit signed integers (-2,147,483,648 to 2,147,483,647), and JET_coltypLongLong for 64-bit signed integers (-9,223,372,036,854,775,808 to 9,223,372,036,854,775,807). Floating-point data is handled by JET_coltypIEEESingle (4-byte single-precision) and JET_coltypIEEEDouble (8-byte double-precision), while JET_coltypDateTime stores dates and times as 8-byte floats representing fractional days since January 1, 1900. For , JET_coltypBinary accommodates up to 255 bytes of content, and JET_coltypText supports up to 255 ASCII characters or 127 characters, with sorting behaviors that are case-insensitive for ASCII and customizable for . Columns in ESE are categorized as fixed-length, variable-length, or tagged, each with distinct implications to optimize space and . Fixed-length columns, such as those using JET_coltypBit, JET_coltypShort, JET_coltypLong, JET_coltypLongLong, JET_coltypIEEESingle, JET_coltypIEEEDouble, and JET_coltypDateTime, allocate a predictable amount of space in every (up to 127 such columns per ), making them suitable for numeric and temporal where sizes are constant; they require only 1 bit for NULL indication and are stored first in the layout. Variable-length columns, including JET_coltypBinary and JET_coltypText, use 2 bytes to prefix the data length (plus NULL indication), allowing dynamic sizing up to the type's limit (up to 128 such columns per ); these follow fixed columns in the and are for strings or binaries of varying sizes. The JET_bitColumnFixed flag can force certain variable types to behave as fixed, but they default to variable for flexibility. Tagged columns represent a sparse storage mechanism, where data is absent from a record unless explicitly set (up to 64,993 per table), reducing overhead for optional or infrequently used fields; they can be either fixed or variable in nature but are always stored last in the record layout, with presence indicated by flags in a compact . This format supports conditional inclusion based on record flags, making tagged columns efficient for wide tables with many nullable attributes. Multi-valued columns must be tagged and enable multiple values per record, influencing secondary indexing strategies as detailed elsewhere. For handling large datasets, ESE employs long-value columns via JET_coltypLongBinary () and JET_coltypLongText (text ), each supporting up to 2 - 1 byte (or 1,073,741,823 Unicode characters for text). These exceed the typical 8 database page size and are stored separately in dedicated B+ trees when larger than 1,024 bytes or when inclusion would overflow the host record's page; otherwise, they may be embedded inline. Storage uses a long value ID (LID) reference (9 bytes in the record) linking to the external tree, with access via byte offsets for streaming operations like appends or partial overwrites; flags such as JET_bitSetSeparateLV force separation, while JET_bitSetIntrinsicLV embeds smaller values. This linked-page approach ensures efficient management of oversized data without fragmenting primary records. ESE provides specialized column variants for advanced functionality, including version columns (marked with JET_bitColumnVersion on JET_coltypLong types) that automatically increment on record modifications to support multi-version concurrency control (MVCC) by tracking change history for conflict detection and record refresh. Auto-increment columns (via JET_bitColumnAutoincrement on JET_coltypLong or JET_coltypLongLong) generate unique, sequential identifiers upon insertion, ensuring non-duplicate values across sessions though not necessarily contiguous or gap-free, with reuse possible after deletions. Escrow columns (using JET_bitColumnEscrowUpdate on JET_coltypLong with a default value) facilitate atomic delta updates for counters or accumulators, avoiding write conflicts in multi-session environments through the JetEscrowUpdate operation; additional flags like JET_bitColumnFinalize (to lock after final update) or JET_bitColumnDeleteOnZero (to nullify on zero value) enhance control for such scenarios. These variants are defined during column creation and integrate seamlessly with ESE's .

Indexing System

Clustered and Primary Indexes

In the Extensible Storage Engine (ESE), every requires exactly one primary index, which serves as the foundational structure for organizing and accessing . This primary index is mandatory; if not specified, the will transparently create one. It is created using the JetCreateIndex function, where the JET_bitIndexPrimary flag is set in the grbit parameter to designate it as the primary index, typically based on a composed of one or more columns. The primary index defines the logical order of all records in the table, establishing a persistent that governs how is inserted, retrieved, and maintained. The primary index is inherently clustered, meaning that records are physically stored on disk in a B+ tree structure that mirrors the order specified by the index key, enabling logarithmic , O(log n), for key-based lookups and range scans. This clustered organization co-locates related records, such as those in sequential key ranges, thereby minimizing disk I/O operations during queries that access contiguous data blocks. To specify the key, developers provide a double null-terminated string in the szKey of JetCreateIndex, listing up to 16 columns in precedence order (with JET_cckeyMost set to 16 on and later), prefixed by '+' for ascending sort order or '-' for descending; sorting is case-sensitive by default. The total is limited to a fixed maximum, typically 255 bytes under JET_cbKeyMost for normalized data, though larger limits (up to 2000 bytes) are supported on higher page sizes in modern Windows versions to balance efficiency and functionality. Uniqueness is enforced on the primary index to prevent duplicate key values, with insertion attempts violating this rule triggering a JET_errKeyDuplicate error. This requirement ensures that secondary indexes, which reference records via primary key values, remain reliable and efficient. ESE also supports conditional uniqueness through conditional indexes, where uniqueness constraints apply only to records meeting specified criteria, such as non-null values in certain columns, allowing flexible rules while maintaining the primary index's role in overall table organization.

Secondary and Specialized Indexes

Secondary indexes in the Extensible Storage Engine (ESE) provide non-clustered access paths to table data using alternate keys distinct from the primary index. Each secondary index is implemented as a separate structure that stores only logical record identifiers pointing to the actual data organized by the primary index, enabling efficient lookups without duplicating the full record content. These indexes can be defined on any set of columns and do not inherently enforce uniqueness unless explicitly configured during creation via the JET_INDEXCREATE structure. ESE supports sparse secondary es, which omit index entries for records where all key columns contain null or default values, thereby reducing storage overhead for tables with many optional fields. This sparse behavior is particularly beneficial for wide tables with numerous nullable columns, as it minimizes index bloat while maintaining query on populated . Sparse indexes align with ESE's support for denormalized schemas, allowing applications to index only relevant non-empty values without performance penalties from empty entries. For multi-valued columns, ESE enables specialized indexing to handle arrays or tagged multi-values within a single record. Tagged columns, which support multiple values per record, are indexed by default on the first value only; however, columns flagged with the JET_bitColumnMultiValued option generate separate index entries for each individual value, allowing comprehensive searches across all elements in the or list. Multi-valued sparse columns, a of tagged columns, further optimize by consuming no for or unused values and support extensive indexing over all populated elements when the multi-valued flag is set. To index combinations across multiple multi-valued columns, applications can enable cross-product indexing, which expands the index to include entries for every of values from the involved columns, though primary indexes prohibit multi-valued keys to preserve record uniqueness. Tuple indexes represent a specialized secondary index type in ESE, tailored for text or binary columns containing long strings, such as paths or identifiers. Unlike standard indexes, tuple indexes decompose the column value into overlapping substrings (tuples) of configurable minimum and maximum lengths—typically ranging from 2 to 255 characters—and create entries for each, facilitating efficient , , or partial matching queries without full scans. These indexes operate on a single column and incorporate parameters like starting offset and increment to control tuple generation, with limits on the source length (up to 32,767 characters by default) to balance index size and query utility. Tuple indexes support sorting based on the extracted substrings and filtering via range operations, making them suitable for applications requiring flexible string-based retrieval. Composite indexes, a form of secondary index using multiple columns as the key, enable sorting and filtering based on combined column values, with key definitions supporting up to the maximum allowable size determined by page boundaries (e.g., bytes for 4 pages). The JET_INDEXCREATE structure allows specification of column precedence in the key array, ensuring ordered access paths for multi-column queries. All secondary and specialized indexes in ESE are automatically updated during transactional inserts, updates, and deletes to maintain data consistency without application intervention. However, repeated modifications can lead to fragmentation, increasing I/O and degrading performance; in such cases, the JetDefragment function can be invoked to reorganize index pages offline or online, reclaiming space and optimizing density. These indexes contribute to query optimization by providing diverse access paths for efficient record retrieval and intersection operations.

Transaction Management

Transactions

Transactions in the Extensible Storage Engine (ESE) are scoped to individual sessions and initiated using the JetBeginTransaction function, which creates a new save point and allows multiple calls to support nested transactions up to seven levels deep. Only the outermost commit, via JetCommitTransaction, persists changes to the database, while inner transactions enable partial rollbacks to previous save points. ESE transactions adhere to ACID properties: atomicity is ensured through full rollback of all changes if a transaction fails; is achieved via , which records committed changes for recovery (detailed further in logging mechanisms); is maintained by engine-enforced constraints such as unique indexes and application-defined rules; and is provided through a model, where each transaction views the database state as it existed at the transaction's start, preventing visibility of uncommitted changes from other sessions. Concurrency is managed via multi-version (MVCC), which employs version columns to track data modifications and allow readers to access consistent snapshots without blocking writers. At the record level, reads access snapshots non-blocking, while writes may result in JET_errWriteConflict errors if concurrent modifications have changed the record version; escrow updates via JetEscrowUpdate enable concurrent adjustments to shared values like counters. Savepoint-like behavior within transactions is achieved through nested transactions, allowing selective rollbacks of inner levels without aborting the entire transaction. Long-running transactions in ESE can lead to growth in the version store, an in-memory area that retains data versions for MVCC and rollback, potentially exhausting available buckets (limited by factors like CPU architecture, e.g., approximately 408 MB on single-core 64-bit systems) and halting updates. Best practices include committing or rolling back frequently to minimize version retention, monitoring via performance counters like "Version buckets allocated," and avoiding prolonged use of temporary tables (created via JetOpenTemporaryTable) within such transactions to prevent unnecessary bloat in the version store.

Logging and Crash Recovery

The Extensible Storage Engine (ESE) employs a (WAL) mechanism to ensure data durability, where all database modifications are recorded in files before being applied to the database pages. These log files, typically named with a base prefix followed by a generation number (e.g., EDB00001.LOG), capture operations such as inserts, updates, and deletes in a format, allowing the system to maintain atomicity and consistency even if a occurs during a . ESE supports two primary logging modes: circular logging and full logging. In circular logging, enabled via the JET_paramCircularLog parameter, the engine automatically truncates and reuses log files once they are no longer needed for —specifically, logs older than the current checkpoint are discarded—reducing storage overhead but limiting recovery options to the last checkpoint, which may result in some . Full logging, the default mode when circular logging is disabled, retains all log files until a full is performed, enabling with zero from the last , though it requires more disk space and periodic to manage log accumulation. Checkpointing advances the recovery point periodically by creating checkpoint files (e.g., EDB.CHK) that mark the state where all prior operations have been durably written to the database, minimizing the volume of logs that must be replayed during . The checkpoint file records the generation numbers of the oldest surviving needed for , and its advancement is influenced by parameters like JET_paramCheckpointDepthMax, which controls the maximum number of log pages buffered before forcing a checkpoint to balance performance and time. Upon system startup following a , ESE initiates soft through the JetInit function, which detects inconsistencies from a "dirty shutdown" and performs a two-phase process to restore the database to a consistent state. In the redo phase, committed transactions since the last checkpoint are replayed from the surviving files to reapply changes that may not have been fully written to disk, ensuring all durable operations are reflected. The undo phase then rolls back any uncommitted transactions or partial changes, using records to reverse operations and maintain properties without data loss for committed work. This ARIES-style (enabled by default via JET_paramRecovery) can be resource-intensive if many generations have accumulated, but it guarantees consistency even after abrupt failures. Log file management in ESE involves sequential generation numbering, where each full log file (default size 5 MB, configurable via JET_paramLogFileSize) is renamed and a new one created upon filling, with temporary logs pre-generated asynchronously to avoid delays under load. occurs during full backups or with circular enabled, deleting obsolete files (controlled by JET_paramDeleteOldLogs), while reserved log files (e.g., RES00001.JRS) are maintained for high-availability scenarios to facilitate clean shutdowns during temporary disk space shortages. These mechanisms ensure continuous operation without manual intervention in most cases. Performance tuning for logging focuses on parameters like JET_paramLogBuffers, which allocates (default 80-126 buffers of 4 each) for caching log writes to reduce I/O during high-throughput updates, and the choice between circular and full , where circular mode improves space efficiency for non-critical applications at the cost of . Asynchronous log file creation (JET_paramLogFileCreateAsynch) further optimizes under heavy workloads, though full is recommended for environments requiring comprehensive crash and .

Operational Features

Cursor Navigation and Copy Buffer

In the Extensible Storage Engine (ESE), cursors serve as session-bound handles that enable applications to navigate and manipulate records within s. A cursor is created using the JetOpenTable function, which opens a cursor on a specified within a database session identified by JET_SESID and JET_DBID; the resulting JET_TABLEID handle is tied exclusively to that session and cannot be shared across sessions. Multiple cursors can be opened on the same to support concurrent operations, subject to resource limits managed by JET_paramMaxCursors, and they are typically closed with JetCloseTable unless automatically handled by a . These handles facilitate record access without locking the entire , promoting efficient concurrent usage. Cursor navigation supports three primary modes: sequential traversal, indexed seeks, and bookmark-based positioning. Sequential navigation is performed via the JetMove function, which repositions the cursor relative to the current index entry using parameters such as cRow (e.g., JET_MoveFirst to move to the first entry, JET_MoveLast to the last, JET_MoveNext for forward traversal, or JET_MovePrevious for backward) and grbit options to skip duplicates or respect index ranges set by JetSetIndexRange. This mode is ideal for iterating through records in order, allowing arbitrary offsets like moving forward by 1000 entries for bulk scanning. Indexed seeks, on the other hand, use JetSeek after constructing a search key with JetMakeKey; the function positions the cursor to the nearest matching entry based on grbit flags such as JET_bitSeekGE (greater than or equal) or JET_bitSeekLE (less than or equal), enabling efficient targeted access without full scans. For bookmark-based positioning, JetGetRecordPosition retrieves the fractional location (as a JET_RECPOS structure) of the current record within the index, which can then be used with JetGotoPosition to navigate directly to that fraction (e.g., 0.5 for the midpoint), supporting operations like resuming from a prior point in large datasets. The copy buffer acts as an in-memory associated with each cursor, allowing temporary modifications and bulk operations without immediately locking or altering the original in the database. Accessed via JET_bitRetrieveCopy in functions like JetRetrieveColumn, the buffer holds pending changes during insert or update preparations, enabling retrieval of modified column values (e.g., auto-increment IDs) before commitment. To stage updates, an application first calls JetPrepareUpdate to initialize the buffer, then uses JetSetColumn to modify specific columns—overwriting values, appending to multi-valued columns, or handling long binary/text data with options like JET_bitSetAppendLV—without affecting the database until finalization. This deferred approach minimizes locking duration, as the buffer isolates changes for validation or bulk assembly. Update semantics in ESE leverage the copy for deferred commits, ensuring atomicity and concurrency. After preparing and populating the , JetUpdate finalizes the operation by writing changes to the database and updating indexes; on success, it returns JET_errSuccess and a for the new or modified , while failures (e.g., due to space constraints) leave the intact for retries without partial commits. This enables temporary modifications in the during navigation-heavy workflows, such as bulk inserts, before a single commit, reducing contention in multi-user environments. For concurrent navigation, ESE employs error handling focused on write conflicts rather than traditional deadlocks, as its snapshot isolation model avoids blocking waits. During cursor movements or updates (e.g., via JetMove or JetUpdate), conflicts arise if another session modifies the same record, returning JET_errWriteConflict; applications must implement retry logic by aborting the with JetRollback, introducing a delay, and reattempting the operation after the conflicting transaction completes. This first-writer-wins policy, combined with session-level single-threading during transactions, ensures prompt detection and encourages optimistic concurrency patterns for cursor-based access.

Query Processing Techniques

The Extensible Storage Engine (ESE) employs API-driven query execution, where applications build retrieval strategies using cursors for , index seeks, and sequential scans rather than declarative SQL queries. This low-level approach allows precise control over data access patterns, leveraging the engine's indexed method (ISAM) architecture to optimize performance for scenarios. Query processing emphasizes efficient index utilization to minimize I/O operations, with the engine supporting seeks on primary and secondary indexes to locate records without unnecessary full table scans. Sorting in ESE is handled through temporary tables, which support both in-memory and disk-based mechanisms for operations like ORDER BY in application logic or index key sorting. The JetOpenTemporaryTable function creates a volatile, single-indexed temporary table optimized for record storage and retrieval during sorting tasks. For small or simple datasets, an in-memory implementation provides the fastest performance by keeping data in . Larger datasets utilize disk-based with forward-only iterators, enabling efficient duplicate removal and reduced I/O through streaming algorithms. Alternatively, a B+ tree-based materialized approach offers greater flexibility for subsequent operations but incurs higher overhead compared to pure methods. These temporary tables are stored in a dedicated temporary database, whose path can be tuned via JetSetSystemParameter with the JET_paramTempPath parameter to leverage high-performance devices. Temporary tables also facilitate intermediate result in multi-step query , allowing applications to materialize subsets of for further filtering, aggregation, or without impacting persistent tables. This is particularly useful for complex retrievals where direct cursor operations on main tables would be inefficient, as the volatile nature of temporary tables ensures they do not persist beyond the session and support rapid creation and population via calls like JetPrepareUpdate and JetUpdate. By staging in temporary structures, applications can avoid repeated scans of large base tables, improving overall query throughput in memory-constrained environments. ESE supports covering indexes through its primary index structure, where all table columns are stored directly in the B-tree leaves alongside the , enabling index-only scans that retrieve selected data without additional lookups to the body. This inherently covers queries that and only primary-key-related or co-located columns, reducing by eliminating secondary fetches. For secondary indexes, however, the structure typically includes only the indexed key values and record identifiers, necessitating a subsequent on the primary to retrieve non-key columns, which introduces an extra I/O step unless the query is limited to index keys alone. Applications can mitigate this by designing secondary indexes with conditional columns that align closely with query needs, though full coverage requires primary alignment. Index intersection in ESE is achieved by applications coordinating multiple cursors on different secondary es to combine results for selective s, such as AND conditions across non-overlapping attributes. By performing parallel s on each and intersecting the record identifier sets—often using temporary tables for merging—the approach avoids full scans on large tables while leveraging the selectivity of individual es. This technique is particularly effective when no single composite covers the , as it allows dynamic combination of ranges without . The engine's efficient operations, bounded by limits (up to 255 bytes standard, extendable to 2000 bytes), ensure low-cost for moderately selective queries. ESE lacks native SQL join support, relying instead on application-implemented virtual joins via coordinated cursor navigation across related tables or pre-joined denormalized structures to simulate relational operations. For instance, applications can on a index in one table to match records in another, using temporary tables to join results and avoid repeated cross-table seeks. This cursor-based enables efficient handling of one-to-many or many-to-one relationships, though it requires careful management to prevent excessive use during large joins. , where related data is stored in a single table with multi-valued columns, further optimizes by eliminating runtime joins altogether, aligning with ESE's strength in handling hierarchical or tagged data. Optimization heuristics in ESE guide usage and choices to favor low-cost paths, such as preferring seeks over scans on large s when a matching exists. During JetSeek operations, the applies heuristics like the JET_bitCheckUniqueness flag (introduced in ) to verify single-match conditions cheaply, returning JET_wrnUniqueKey to short-circuit further retrieval if applicable. Search key construction via JetMakeKey influences cost by enabling precise inequality bounds (e.g., JET_bitSeekGE for greater-than-or-equal), allowing the to prune irrelevant ranges and avoid exhaustive traversals. While internal cost models are not exposed, these heuristics ensure adaptive selection of paths based on key specificity and table size, promoting scalability for high-volume access patterns. Queries are ultimately implemented via cursor primitives for and buffering, as described in the Cursor Navigation and Copy Buffer section.

Backup and Recovery

Backup and Restore

The Extensible Storage Engine (ESE) supports both methods for backing up databases, enabling data protection without necessarily interrupting application access. Online backups, facilitated by the JetBackup API, allow creation of consistent copies while the database remains active and transactions continue, primarily through streaming mechanisms that copy database files (.edb) in 64KB chunks with verification to ensure integrity. Full online backups capture the primary database file along with active files from the current checkpoint, providing a point-in-time that can be restored to a specific recovery point. Incremental backups are achieved via log shipping, where only the transaction logs generated since the last full backup are copied, minimizing storage needs while maintaining recoverability. For offline scenarios, ESE employs defragmentation via the JetDefragment , which optimizes database organization by reclaiming internal space during periods of database detachment, though it operates in place without creating a separate copy. This method is useful for maintenance s on large databases, where streaming APIs like JetBeginExternalBackup initiate the process by flushing dirty pages and halting checkpoints to ensure consistency before file copying. API integration, such as JetGetAttachInfo, coordinates s by querying attached database names and states, allowing backup applications to identify and handle all relevant files dynamically. Additionally, ESE integrates with Volume Shadow Copy Service (VSS) for application-consistent s, where the VSS (or equivalent) freezes I/O operations briefly to create shadow copies without full API involvement. The restore process begins with mounting the backed-up database files using JetExternalRestore, which specifies paths for checkpoint and log files to initiate recovery. This API orchestrates log replay from the backup's log range (defined by generation numbers genLow to genHigh), rolling forward committed transactions and optionally undoing uncommitted ones to reach a consistent state at the desired recovery point. Post-replay, the database can be reattached via JetAttachDatabase, ensuring all changes from the backup period are applied. For large-scale restores, streaming techniques mirror those in backups to handle volume efficiently. Best practices recommend scheduling full backups based on transaction log retention policies—typically daily for high-activity environments—and combining them with frequent log backups to balance recovery time objectives with storage costs, always verifying backups in isolated environments to confirm restorability.

Cross-Hardware Backup and Restore

Migrating Extensible Storage Engine (ESE) databases across different platforms presents several portability challenges, primarily due to the nature of the .edb . ESE files employ little-endian byte ordering for structures, including UTF-16 encoded strings without a , which is compatible with x86 and x64 Windows architectures but incompatible with big-endian systems outside the Windows ecosystem. Page size variations, such as the traditional 8 KB pages versus the 32 KB pages introduced in 2025 for Domain Services (AD DS), can lead to compatibility issues during direct file transfers, as older formats may require modes or upgrades to successfully on newer . Version mismatches between ESE implementations further complicate migrations, as databases from prior versions (e.g., Exchange Server 2016) cannot be directly attached to later ones without risking or service failures. To address these challenges, typically involves exporting data or copying database files followed by operations. For transitions within the same Windows and ESE , administrators copy the .edb file along with associated files (.log) and checkpoint files to the target system, then perform soft using the eseutil to replay logs and ensure transactional consistency (e.g., eseutil /r <log generation>). Database patching for format upgrades occurs during mounting; for instance, attaching an 8 KB page .edb on 2025 upgrades it to a compatible via the ESE engine (esent.dll), though this can inadvertently alter the format and prevent loading on legacy systems unless performed in a controlled environment. Third-party tools, such as libesedb libraries, enable low-level access for custom export scripts, but official migrations rely on utilities like eseutil for and repair (eseutil /d or /r). ESE remains inherently limited to Windows environments, with no native support for non-Windows platforms due to its tight integration with the Windows kernel and little-endian dependencies. However, the ESE API (esent.dll) facilitates data export to neutral formats like or XML through application-level reads, allowing indirect portability for analysis or integration in cross-platform scenarios. In virtualized setups, such as or , ESE databases can be migrated between hosts on diverse underlying hardware by treating virtual machines as portable units, provided the guest OS version matches and virtualization supports consistent I/O passthrough for log files. Windows Server 2025 introduces enhanced for page size migrations in ESE-based databases like AD DS, enabling 8 KB legacy formats to operate in an 8 KB simulation mode on 32 KB-capable systems during in-place upgrades or file copies, which expands scalability for multi-valued attributes without immediate data reformatting. This mode maintains but requires all domain controllers in to 32 KB pages for full , with 8 KB backups becoming obsolete post-migration. Post-migration verification is essential to confirm and consistency. Administrators use eseutil for validation (eseutil /k) to detect corruption in the .edb file and replay any remaining logs (eseutil /r) to apply pending transactions, ensuring the database state matches the backup point. These steps, performed after standard backups, help mitigate risks from hardware differences, with successful mounting and client access (e.g., via ) serving as final confirmation.

Comparisons and Modern Usage

Comparison to JET Red

The Extensible Storage Engine (ESE), previously known as JET Blue, marks a substantial from JET Red in architectural design. JET Red operates as a single-threaded engine optimized for file-sharing scenarios in desktop applications such as , limiting its suitability for high-concurrency environments. In contrast, ESE adopts a multi-threaded, scalable tailored for server-grade operations, enabling robust handling of concurrent transactions through features like record-level locking and . ESE introduces advanced features absent in JET Red, including Multi-Version Concurrency Control (MVCC) for snapshot isolation, support for long columns up to approximately 2 GB in size, sparse indexes for efficient storage of null-heavy data, and tagged multi-valued columns to accommodate complex data structures. JET Red, by comparison, lacks these capabilities, relying instead on simpler column types without native multi-valued or sparse support, which restricts its flexibility for diverse data models. In terms of , ESE excels at managing large-scale reaching over 1 TB in size with superior concurrency for multi-user access, making it ideal for enterprise applications like . JET Red, however, is constrained to smaller with a maximum size of 2 GB, aligning it better with lightweight, single-user or limited multi-user deployments where scalability demands are modest. The API for ESE builds on the JET interface but extends it with additional calls, such as JetGetColumnInfo for detailed introspection, while maintaining conceptual compatibility for core operations; however, the two engines are not interoperable due to their distinct implementations. Following its in , ESE emerged as the extensible successor for server workloads, effectively supplanting Red's role in high-performance scenarios by the early , though JET Red continued in desktop contexts.

Current Implementations and Extensions

The Extensible Storage Engine (ESE) serves as the core database engine for several key products, enabling efficient, scalable data management in enterprise environments. In Domain Services (AD DS), ESE powers the NTDS.dit database file, which stores directory objects, attributes, and security principals essential for across Windows networks. Similarly, ESE underlies the mailbox databases in , providing transactional integrity and high-availability storage for email, calendars, and attachments in on-premises and hybrid deployments. For , ESE manages the indexing database (typically Windows.edb), facilitating fast across files, emails, and applications by organizing and content into indexed tables. In 2025, ESE integrations have advanced to support larger-scale deployments, particularly for Domain Services (AD DS) and Active Directory Lightweight Directory Services (AD LDS). New installations of AD DS and AD LDS now default to a 32 KB page size for ESE databases, a significant upgrade from the 8 KB pages used since , which enhances object scalability by supporting multi-valued attributes with up to approximately 3,200 values each through 64-bit Long Value IDs (LIDs). This feature requires all domain controllers to run 2025 and an elevated forest functional level, enabling better handling of expansive datasets in cloud scenarios where on-premises synchronizes with . The enhanced ESE format thus improves performance and capacity for environments, reducing overhead in cross-cloud identity operations without compromising for existing 8 KB databases during upgrades. Since its open-sourcing in 2021, ESE has benefited from community-driven extensions via the official repository, with ongoing contributions including unit tests and integration with pipelines for continuous validation. Post-2021 updates have focused on maintaining compatibility and adding reusable sub-components like synchronization libraries and cache managers, though specific performance patches remain integrated into 's internal development cycle rather than public releases. The JET API, ESE's primary programmatic interface, offers significant extensibility for developers to customize database structures beyond standard implementations. It supports the creation of custom column handlers for specialized data types and conditional indexing via functions like JetCreateTableColumnIndex, enabling tailored schemas for unique application needs such as variable-length fields or computed values. This flexibility has extended ESE's adoption to non-Microsoft applications, notably in and tools; for instance, Backup for leverages ESE databases (also known as JET Blue) for storing protected data in repositories, ensuring efficient, transactionally consistent backups of cloud workloads. Looking ahead as of 2025, ESE's evolution emphasizes deeper ties to Microsoft's cloud ecosystem, with 2025's hybrid enhancements positioning it for seamless integration in multi-cloud .

References

  1. [1]
    Extensible Storage Engine - Win32 apps - Microsoft Learn
    Jan 7, 2021 · The Extensible Storage Engine (ESE) is an advanced indexed and sequential access method (ISAM) storage technology. ESE enables applications to ...
  2. [2]
    About Extensible Storage Engine - Win32 apps - Microsoft Learn
    Jan 7, 2021 · About Extensible Storage Engine. The extensible storage engine (ESE) is a database engine that stores information in a logical sequence.
  3. [3]
    Microsoft Open Sources ESE, the Extensible Storage Engine
    Feb 3, 2021 · Microsoft Open Sources ESE, the Extensible Storage Engine. Microsoft has placed the source code for ESE, the Exchange database engine, in ...
  4. [4]
    Database 32k pages for Active Directory on Windows Server
    Oct 25, 2024 · Active Directory Domain Services (AD DS) and Lightweight Directory Services (LDS) uses an Extensible Storage Engine (ESE) database.<|control11|><|separator|>
  5. [5]
    How can the windows search indexing ESE Windows.edb number of ...
    Mar 24, 2019 · The version store in this case is an Extensible Storage Engine using. C:\ProgramData\Microsoft\Search\Data\Applications\Windows\Windows.edb.
  6. [6]
    microsoft/Extensible-Storage-Engine: ESE is an embedded ... - GitHub
    ESE is an embedded / ISAM-based database engine, that provides rudimentary table and indexed access.
  7. [7]
    Microsoft's Extensible Storage Engine (JET Blue) source code ...
    Feb 1, 2021 · Microsoft Access shipped with JET Red, while ESE is the JET Blue implementation of the API. "JET" itself stands for Joint Engine Technology.<|control11|><|separator|>
  8. [8]
    Microsoft's Extensible Storage Engine Goes Open Source - TFiR
    Feb 2, 2021 · First shipping in Windows NT 3.51 and shortly thereafter in Exchange 4.0, and rewritten twice in the 90s, and heavily updated over the ...
  9. [9]
    Microsoft released Extensible Storage Engine source code (JET Blue)
    It first appeared in Windows NT 3.51 and Exchange 4.0 before continuing to have a lifespan spanning today's Windows 10. Components, such as Windows Search or ...
  10. [10]
    Extensible Storage Engine - Wikipedia
    Extensible Storage Engine (ESE), also known as JET Blue, is an ISAM (indexed sequential access method) data storage technology from Microsoft.
  11. [11]
    Everything You Ever Wanted to Know about ESE - ITPro Today
    Formerly known as Joint Engine Technology (JET), ESE is an evolution of what Microsoft hoped would become the unified storage engine for all Microsoft ...
  12. [12]
    Demartek Publishes Exchange Server 2003 vs 2007 vs 2010 I/O ...
    With Exchange Server 2010, Microsoft has again made several changes to the Extensible Storage Engine (ESE) to increase performance and ...
  13. [13]
    Exchange & Extensible Storage Engine (ESE; JET Blue) - Reddit
    Sep 10, 2021 · Exchange Server still uses the Extensible Storage Engine (ESE) otherwise known as JET Blue for it's database engine.Missing: documentation | Show results with:documentation
  14. [14]
    Microsoft Open Sources ESE, the Extensible Storage Engine
    Feb 3, 2021 · In a surprise development, Microsoft has released the source code for the Extensible Storage Engine (ESE) on GitHub.
  15. [15]
    What's new in Windows Server 2025 | Microsoft Learn
    Feb 28, 2025 · 32k database page size optional feature: Active Directory uses an Extensible Storage Engine (ESE) database since its introduction in Windows ...
  16. [16]
    Extensible Storage Engine Files - Win32 apps | Microsoft Learn
    Oct 14, 2025 · The Extensible Storage Engine uses the following types of files: Transaction Log Files; Temporary Transaction Log Files; Reserved Transaction ...
  17. [17]
    ESE Deep Dive: Part 1: The Anatomy of an ESE database
    Dec 4, 2017 · From a physical perspective, an ESE database is just a file on disk. It is a collection of fixed size pages arranged into B+ tree structures.Missing: .edb
  18. [18]
    JetCreateDatabase Function - Win32 apps - Microsoft Learn
    Aug 26, 2021 · The JetCreateDatabase function creates and attaches a database file to be used with the ESE database engine. Calling JetCreateDatabase2 with ...
  19. [19]
    Creating Databases - Win32 apps | Microsoft Learn
    Jan 7, 2021 · Up to 6 databases can be simultaneously attached to an instance with JetCreateDatabase or JetAttachDatabase. One or more sessions should be ...Missing: multiple | Show results with:multiple
  20. [20]
    JetEnableMultiInstance Function - Win32 apps | Microsoft Learn
    Aug 26, 2021 · The JetEnableMultiInstance function configures the database engine for use with multiple instances in the same process.
  21. [21]
    Exchange Server storage configuration options | Microsoft Learn
    Jul 7, 2025 · Supported: Approximately 16 terabytes. Best practice: 200 gigabytes (GB) or less. Provision for 120 percent of calculated maximum database size.Physical Disk Types · Best Practices For Supported... · Multiple Databases Per...Missing: Extensible Engine
  22. [22]
    Database Overview - Win32 apps - Microsoft Learn
    Jan 7, 2021 · An ESE database is stored in a single file and consists of one or more user-defined tables. Data is organized in records in the table with one ...
  23. [23]
    JET_TABLECREATE3 Structure - Win32 apps | Microsoft Learn
    The JET_TABLECREATE3 structure contains the information that is needed to create a table populated with columns and indexes in an Extensible Storage Engine (ESE) ...
  24. [24]
    Indexing in the Table - Win32 apps | Microsoft Learn
    Jan 7, 2021 · The primary index is always a clustered index, and must also be unique. The primary index must be declared before the first table update to ...
  25. [25]
    Transactions (Windows Events) - Win32 apps - Microsoft Learn
    Jan 7, 2021 · ESE transactions are logical units of processing that control how an application sees and manipulates rows in the database.
  26. [26]
    Informational Parameters - Win32 apps - Microsoft Learn
    This read-only parameter indicates the maximum allowable index key length that can be selected for the current database page size (as configured by ...
  27. [27]
    JetPrepareUpdate Function - Win32 apps
    ### Summary of JetPrepareUpdate and JetUpdate for Inserting/Modifying Records in ESE
  28. [28]
    JetRetrieveColumns Function - Win32 apps - Microsoft Learn
    Aug 26, 2021 · JetRetrieveColumns Function. The JetRetrieveColumns function retrieves multiple column values from the current record in a single operation.Missing: JET | Show results with:JET
  29. [29]
    [PDF] Extensible Storage Engine (ESE) Database File (EDB) format ...
    The Extensible Storage Engine (ESE) Database File (EDB) format is used by many Microsoft application to store data such as Windows Mail, Windows Search, Active ...
  30. [30]
    JetDefragment Function - Win32 apps - Microsoft Learn
    Aug 26, 2021 · The JetDefragment function starts and stops database defragmentation tasks that improves data organization within a database.Missing: overflow large
  31. [31]
    JET_coltyp enumeration - Win32 apps - Microsoft Learn
    Jan 7, 2021 · Nil, Null column type. Invalid for column creation. ; Bit, True, False or NULL. ; UnsignedByte, 1-byte integer, unsigned. ; Short, 2-byte integer, ...Missing: ESE | Show results with:ESE
  32. [32]
    Tagged, Fixed and Variable Columns - Win32 apps - Microsoft Learn
    Jan 7, 2021 · Tagged, fixed, and variable-length columns are the primary column types supported by ESE. Tagged columns are not present in a record unless data is stored in ...
  33. [33]
    Columns - Win32 apps - Microsoft Learn
    Jan 7, 2021 · A table can be created either with an initial set of columns by calling JetCreateTableColumnIndex or without an initial set of columns by ...
  34. [34]
    Long Value Columns - Win32 apps - Microsoft Learn
    Dec 10, 2021 · ESE stores the long value separated if it is larger than 1024 bytes or if the record would not fit on a single database page if stored in ...
  35. [35]
    Version, Auto-Increment and Escrow Columns - Win32 apps
    Jan 7, 2021 · Auto-Increment (JET_bitColumnAutoincrement). Auto increment columns are automatically incremented by ESE when a new record is inserted into the ...Missing: JET_bitAutoIncrement | Show results with:JET_bitAutoIncrement
  36. [36]
  37. [37]
    JET_INDEXCREATE Structure - Win32 apps - Microsoft Learn
    Aug 26, 2021 · The JET_INDEXCREATE structure contains the information needed to create an index over data in an Extensible Storage Engine (ESE) database.
  38. [38]
    Multi-Valued Sparse Columns - Win32 apps | Microsoft Learn
    Sparse columns, also referred to as tagged columns, can contain more than one value in a single record. Tagged columns can be any of the columns types described ...
  39. [39]
    Indexing over Multi-Valued Columns - Win32 apps - Microsoft Learn
    Jan 7, 2021 · Indexing over multi-valued columns is only performed over the first multi-valued column in the index. The first multi-valued column is expanded ...
  40. [40]
    Index Parameters - Win32 apps | Microsoft Learn
    Aug 26, 2021 · This parameter specifies the default for the maximum tuple length in a tuple index. For more information, see the JET_TUPLELIMITS structure.
  41. [41]
    JET_TUPLELIMITS Structure - Win32 apps | Microsoft Learn
    Aug 26, 2021 · A tuple index walks a string and indexes all of its possible substrings of chLengthMax. At the end of the string (or at position chToIndexMax, ...
  42. [42]
    JetCreateIndex2 Function - Win32 apps - Microsoft Learn
    Aug 26, 2021 · JetCreateIndex2 iterates through the indexes given in pindexcreate, and will sometimes abort on the first failure. Any indexes after the first ...
  43. [43]
    Maximum Settings Constants - Win32 apps | Microsoft Learn
    Aug 26, 2021 · The maximum number of components in a sort or index key. Windows Vista: In Windows Vista and later versions of Windows the value is 16.
  44. [44]
    Index Key - Win32 apps - Microsoft Learn
    Jan 7, 2021 · The index key may be defined as the primary index when the JET_bitIndexPrimary option is set in the grbit parameter of JetCreateIndex or JET_INDEXCREATE.<|separator|>
  45. [45]
    JetIntersectIndexes Function - Win32 apps - Microsoft Learn
    Aug 26, 2021 · The JetIntersectIndexes function computes the intersection between multiple sets of index entries from different secondary indices over the ...
  46. [46]
    JetBeginTransaction Function - Win32 apps - Microsoft Learn
    Aug 26, 2021 · The JetBeginTransaction function causes a session to enter a transaction and create a new save point. This function can be called more than once on a single ...Missing: ACID properties MVCC
  47. [47]
    JetOpenTemporaryTable Function - Win32 apps | Microsoft Learn
    Aug 26, 2021 · To configure the number of tables that have schemas that can be cached, use JetSetSystemParameter with JET_paramMaxOpenTables.
  48. [48]
    Transaction Log Parameters - Win32 apps - Microsoft Learn
    Aug 26, 2021 · This parameter configures how transaction log files are managed by the database engine. When circular logging is off, all transaction log files ...
  49. [49]
    JetInit Function - Win32 apps
    ### Summary of JetInit Crash Recovery
  50. [50]
    JetOpenTable Function - Win32 apps | Microsoft Learn
    Aug 26, 2021 · Tables opened with JetOpenTable should usually be closed with JetCloseTable. The exception to this rule happens when JetOpenTable is called in a ...
  51. [51]
    ESE Handles - Win32 apps - Microsoft Learn
    Jan 7, 2021 · Extensible Storage Engine · Learn · Windows · Apps · Win32 · Desktop Technologies · Data Access and Storage · Extensible Storage Engine. Ask ...<|control11|><|separator|>
  52. [52]
    JetMove Function - Win32 apps | Microsoft Learn
    Jul 13, 2022 · The JetMove function positions a cursor at the start or end of an index and traverses the entries in that index either forward or backward.
  53. [53]
    JetSeek Function - Win32 apps - Microsoft Learn
    Aug 26, 2021 · For more information about Jet errors, see Extensible Storage Engine Errors and Error Handling Parameters. Expand table. Return code.
  54. [54]
    Api.JetGetRecordPosition method - Win32 apps - Microsoft Learn
    Jan 7, 2021 · Returns the fractional position of the current record in the current index in the form of a JET_RECPOS structure.
  55. [55]
    Api.JetGotoPosition method - Win32 apps - Microsoft Learn
    Jan 7, 2021 · Moves a cursor to a new location that is a fraction of the way through the current index. Also see JetGetRecordPosition(JET_SESID, ...
  56. [56]
    JetRetrieveColumn Function - Win32 apps | Microsoft Learn
    Aug 26, 2021 · The JetRetrieveColumn function retrieves a single column value from the current record. The record is that record associated with the index entry at the ...
  57. [57]
    JetSetColumn Function - Win32 apps | Microsoft Learn
    Aug 26, 2021 · The JetSetColumn function modifies a single column value in a modified record to be inserted or to update the current record.
  58. [58]
    JetUpdate Function - Win32 apps
    ### Summary on Space Management for Large Records and Overflow Pages in ESE
  59. [59]
  60. [60]
    Api members - Win32 apps - Microsoft Learn
    Jan 7, 2021 · Opens a database previously attached with JetAttachDatabase(JET_SESID, String, AttachDatabaseGrbit), for use with a database session. This ...
  61. [61]
    JetMakeKey Function - Win32 apps | Microsoft Learn
    Aug 26, 2021 · The JetMakeKey function constructs search keys that may then be used to find a set of entries in an index by some simple search criteria on their key column ...
  62. [62]
    JetBackup Function - Win32 apps - Microsoft Learn
    Aug 26, 2021 · The JetBackup function creates a backup of the database while the database is online. This function is primarily for backwards compatibility with Windows 2000 ...Missing: ESE procedure
  63. [63]
    The ESE Backup Process: An Inside Look - ITPro Today
    The backup application uses backup API calls to pass to ESE a list of databases to be backed up. These database are open files (remember Exchange backups let ...
  64. [64]
    JetBeginExternalBackup Function - Win32 apps - Microsoft Learn
    Aug 26, 2021 · The JetBeginExternalBackup function initiates an external backup while the engine and database is online and active.<|separator|>
  65. [65]
    JetGetAttachInfoInstance Function - Win32 apps | Microsoft Learn
    Aug 26, 2021 · Only databases that are currently attached to the instance using JetAttachDatabase will be considered. These files may subsequently be ...
  66. [66]
    Using Windows Server Backup to back up and restore Exchange data
    Apr 30, 2025 · Exchange includes a plug-in for Windows Server Backup (WSB) that enables you to create Exchange-aware Volume Shadow Copy Service (VSS)-based backups of ...Missing: ESE | Show results with:ESE
  67. [67]
    JetExternalRestore Function - Win32 apps - Microsoft Learn
    Aug 26, 2021 · The JetExternalRestore function restores an external backup that was taken with the external backup APIs and specifies a range of log file numbers to replay ...Missing: procedures | Show results with:procedures
  68. [68]
    Move a mailbox database using database portability - Microsoft Learn
    Apr 30, 2025 · Use the Exchange Management Shell to move user mailboxes to a recovered or dial tone database using database portability.
  69. [69]
    Windows Server 2025 update history - Microsoft Support
    When an IT admin copies an 8 KB page-size DIT to a machine running Windows Server 2025, or upgrades to Windows Server 2025 “in-place” and mounts it using ...<|control11|><|separator|>
  70. [70]
    libyal/libesedb: Library and tools to access the Extensible ... - GitHub
    libesedb is a library to access the Extensible Storage Engine (ESE) Database File (EDB) format. The ESE database format is used in may different applications.Missing: migration portability
  71. [71]
    Host AD DCs in virtual hosting environments - Windows Server
    Jan 15, 2025 · This article discusses the things to consider when a Windows Server-based DC runs in a virtual hosting environment.Missing: cross- | Show results with:cross-
  72. [72]
    Repairing Exchange databases with ESEUTIL - when and how?
    These two utilities are remarkably successful in fixing up a database (almost) like brand new. In fact, they may be a little too successful.
  73. [73]
    Access specifications - Microsoft Support
    General. 2 gigabytes, minus the space needed for system objects. Note: You can work around this size limitation by linking to tables in other Access databases. ...
  74. [74]
    Extensible Storage Engine - an overview | ScienceDirect Topics
    The Extensible Storage Engine (ESE) is defined as a database management system that utilizes a balanced tree (b-tree) structure for fast storage and ...
  75. [75]
    Windows Search forensics
    May 12, 2020 · ... Windows Search uses the Extensible Storage Engine (ESE) to store its data. This is the same engine that Microsoft Exchange uses. Because ESE ...
  76. [76]
    JetCreateTableColumnIndex Function - Win32 apps | Microsoft Learn
    Aug 26, 2021 · The JetCreateTableColumnIndex function creates a table in an ESE database with an initial set of indexes and an initial set of columns from ...Missing: JetCreateTable | Show results with:JetCreateTable
  77. [77]
    Considerations and Limitations - Veeam Backup for Microsoft 365 ...
    Sep 25, 2025 · To save data in JET-based backup repositories, Veeam Backup for Microsoft 365 uses Extensible Storage Engine (ESE) databases, also known as JET Blue.Missing: third- | Show results with:third-
  78. [78]
    Announcing SQL Server 2025 (preview): The AI-ready enterprise ...
    May 19, 2025 · SQL Server 2025, now in public preview, empowers customers to develop modern AI applications securely using their data.Your Data, Any Model... · Cloud Agility Through Azure · Get Started With Sql Server...Missing: Future outlook