Skip to content

Latest commit

 

History

History
91 lines (61 loc) · 3.04 KB

File metadata and controls

91 lines (61 loc) · 3.04 KB
title Enable or Disable Data Collection | Microsoft Docs
ms.custom
ms.date 03/14/2017
ms.prod sql-server-2016
ms.reviewer
ms.suite
ms.technology
database-engine
ms.tgt_pltfrm
ms.topic article
helpviewer_keywords
data collector [SQL Server], disabling
data collector [SQL Server], enabling
ms.assetid 0137971b-fb48-4a3e-822a-3df2b9bb09d7
caps.latest.revision 18
author JennieHubbard
ms.author jhubbard
manager jhubbard

Enable or Disable Data Collection

This topic describes how to enable or disable data collection in [!INCLUDEssCurrent] by using [!INCLUDEssManStudioFull] or [!INCLUDEtsql].

In This Topic

Before You Begin

Security

Permissions

Requires membership in the dc_admin or dc_operator (with EXECUTE permission) fixed database role to execute this procedure.

Using SQL Server Management Studio

To enable the data collector

  1. In Object Explorer, expand the Management node.

  2. Right-click Data Collection, and then click Enable Data Collection.

To disable the data collector

  1. In Object Explorer, expand the Management node.

  2. Right-click Data Collection, and then click Disable Data Collection.

Using Transact-SQL

To enable the data collector

  1. Connect to the [!INCLUDEssDE].

  2. From the Standard bar, click New Query.

  3. Copy and paste the following example into the query window and click Execute. This example uses sp_syscollector_enable_collector to enable the data collector.

USE msdb;  
GO  
EXEC dbo.sp_syscollector_enable_collector ;  

To disable the data collector

  1. Connect to the [!INCLUDEssDE].

  2. From the Standard bar, click New Query.

  3. Copy and paste the following example into the query window and click Execute. This example uses sp_syscollector_disable_collector to disable the data collector.

USE msdb;  
GO  
EXEC dbo.sp_syscollector_disable_collector;  

See Also

Data Collection
System Stored Procedures (Transact-SQL)