Logg på med Microsoft
Logg på, eller opprett en konto.
Hei,
Velg en annen konto.
Du har flere kontoer
Velg kontoen du vil logge på med.
Engelsk
Beklager. Denne artikkelen er ikke tilgjengelig på språket ditt.

Symptoms

Assume that you have a database that has a memory-optimized filegroup in Microsoft SQL Server 2014. The transaction log may continue to grow large, and you can't truncate or shrink the log. If you're hitting this issue, you'll see the following symptoms:

  • The sys.databases catalog view reports log_reuse_wait_desc as "XTP_CHECKPOINT."

    Select name, log_reuse_wait_desc from sys.databases where name='<DatabaseName>'
  • A manual checkpoint operation on the affected database fails, and you receive the following error message:

    Msg 41315, Level 16, State 4, Line N
    Checkpoint operation failed in database <database name>.

  • You can't find the offline checkpoint thread that corresponds to the affected database.

    Select db_name(database_id) as DatabaseName, * from sys.dm_exec_requests where command = 'XTP_OFFLINE_CKPT'
  • Querying statistics about the In-Memory OLTP checkpoint operation for the affected database returns 0 for every column:

    Select * from sys.dm_db_xtp_checkpoint_stats

Resolution

The issue was first fixed in the following cumulative updates of SQL Server:

Each new cumulative update for SQL Server contains all the hotfixes and all the security fixes that were included with the previous cumulative update. We recommend that you download and install the latest cumulative updates for SQL Server:


Workaround

To work around this issue, bring the affected database offline and then back online, or recycle the instance of SQL Server.

Note The transaction log can be truncated or shrank. However, the issue may reoccur until the fix is applied.

Status

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

Trenger du mer hjelp?

Vil du ha flere alternativer?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Var denne informasjonen nyttig?

Hva påvirket opplevelsen din?
Når du trykker på Send inn, blir tilbakemeldingen brukt til å forbedre Microsoft-produkter og -tjenester. IT-administratoren kan samle inn disse dataene. Personvernerklæring.

Takk for tilbakemeldingen!

×