Skip to content

Latest commit

 

History

History
43 lines (35 loc) · 1.83 KB

File metadata and controls

43 lines (35 loc) · 1.83 KB
title Configure Data Collection Parameters (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 03/04/2017
ms.prod sql-server-2016
ms.reviewer
ms.suite
ms.technology
database-engine
ms.tgt_pltfrm
ms.topic article
helpviewer_keywords
data collection [SQL Server]
ms.assetid 850905b6-35d2-4ed1-ab51-de64daa832b2
caps.latest.revision 16
author JennieHubbard
ms.author jhubbard
manager jhubbard

Configure Data Collection Parameters (Transact-SQL)

Before you create a custom collection set, you must first configure data collection parameters. You can do this by using the stored procedures that are provided with the data collector. Accomplishing this task involves using Query Editor in [!INCLUDEssManStudioFull] to carry out the following procedure.

Note

You only configure data collection parameters once. After configuration, these parameters are used for any additional collection sets that you create.

Configure data collection parameters

  1. In [!INCLUDEssManStudioFull], connect to the database where you want to create a custom collection set.

  2. In Query Editor, issue the following statements.

    USE msdb;  
    EXEC sp_syscollector_set_warehouse_instance_name N'INSTANCE_NAME';-- where instance name is the name of the SQL Server instance  
    EXEC sp_syscollector_set_warehouse_database_name N'MDW';  
    EXEC sp_syscollector_set_cache_directory N'D:\tempdata';  

See Also

Data Collection
Data Collector Stored Procedures (Transact-SQL)