Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 1.85 KB

File metadata and controls

40 lines (32 loc) · 1.85 KB
title Configure Data Collection Parameters (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 03/04/2017
ms.prod sql
ms.reviewer
ms.technology supportability
ms.topic conceptual
helpviewer_keywords
data collection [SQL Server]
ms.assetid 850905b6-35d2-4ed1-ab51-de64daa832b2
author MashaMSFT
ms.author mathoma
manager craigg

Configure Data Collection Parameters (Transact-SQL)

[!INCLUDEappliesto-ss-xxxx-xxxx-xxx-md] 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)