Skip to content

Latest commit

 

History

History
62 lines (49 loc) · 2.26 KB

kill-stats-job-transact-sql.md

File metadata and controls

62 lines (49 loc) · 2.26 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
KILL STATS JOB (Transact-SQL)
KILL STATS JOB (Transact-SQL)
rwestMSFT
randolphwest
07/27/2017
sql
t-sql
reference
KILL STATS JOB
KILL_STATS_JOB_TSQL
ending statistics update jobs [SQL Server]
stopping statistics update jobs
terminating statistics update jobs
asynchronous statistics updates [SQL Server]
KILL STATS JOB statement
statistics update jobs [SQL Server]
TSQL

KILL STATS JOB (Transact-SQL)

[!INCLUDE SQL Server Azure SQL Managed Instance]

Terminates an asynchronous statistics update job in [!INCLUDEssNoVersion].

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Syntax

KILL STATS JOB job_id   

Arguments

job_id
Is the job_id field returned by the sys.dm_exec_background_job_queue dynamic management view for the job.

Remarks

The job_id is unrelated to session_id or unit of work used in other forms of the KILL statement.

Permissions

User must have VIEW SERVER STATE permission to access information from the sys.dm_exec_background_job_queue dynamic management view.

KILL STATS JOB permissions default to the members of the sysadmin and processadmin fixed database roles and are not transferable.

Examples

The following example shows how to terminate the statistics update associated with a job where the job_id = 53.

KILL STATS JOB 53;  
GO  

See Also

KILL (Transact-SQL)
KILL QUERY NOTIFICATION SUBSCRIPTION (Transact-SQL)
sys.dm_exec_background_job_queue (Transact-SQL)
Statistics