Edit

Replication to memory-optimized table Subscribers

Applies to: SQL Server Azure SQL Managed Instance

You can configure tables that act as snapshot and transactional replication subscribers, except for peer-to-peer transactional replication, as memory-optimized tables. Memory-optimized tables aren't compatible with other replication configurations. This feature is available starting with SQL Server 2016 (13.x).

Two configurations are required

To configure a memory-optimized table as a subscriber

  1. Create a transactional publication. For more information, see Create a Publication.

  2. Add articles to the publication. For more information, see Define an Article.

    If configuring by using Transact-SQL set the @schema_option parameter of the sp_addarticle stored procedure to
    0x40000000000.

  3. In the article properties window, set Enable Memory optimization to true.

  4. Start the Snapshot Agent job to generate the initial snapshot for this publication. For more information, see Create and Apply the Initial Snapshot.

  5. Now create a new subscription. In the New Subscription Wizard set Memory Optimized Subscription to true.

Memory-optimized tables should now start receiving updates from the publisher.

Reconfigure an existing transaction replication

  1. Go to subscription properties in Management Studio and set Memory Optimized Subscription to true. The changes aren't applied until you reinitialize the subscription.

    If configuring by using Transact-SQL set the new @memory_optimized parameter of the sp_addsubscription stored procedure to true.

  2. Go to the article properties for a publication in Management Studio and set Enable Memory optimization to true.

    If configuring by using Transact-SQL set the @schema_option parameter of the sp_addarticle stored procedure to
    0x40000000000.

  3. Memory-optimized tables don't support clustered indexes. To have replication handle this limitation by converting the index to a nonclustered index on the destination, set Convert clustered index to nonclustered for memory optimized article to true.

    If configuring by using Transact-SQL set the @schema_option parameter of the sp_addarticle stored procedure to 0x0000080000000000.

  4. Regenerate the snapshot.

  5. Reinitialize the Subscription.

Remarks and restrictions

Only one-way transactional replication is supported. Peer-to-peer transactional replication isn't supported.

You can't publish memory-optimized tables.

You can't configure replication tables on the distributor as memory-optimized tables.

You can't include memory-optimized tables in merge replication.

At the subscriber, you can configure tables involved in transactional replication as memory-optimized tables, but the subscriber tables must meet the requirements of memory-optimized tables. This requirement imposes the following restrictions:

Modifying a schema file

  • If you use the memory-optimized table option DURABILITY = SCHEMA_AND_DATA, the table must have a nonclustered primary key index.

  • ANSI_PADDING must be ON.