Skip to content

Latest commit

 

History

History
68 lines (53 loc) · 2.36 KB

File metadata and controls

68 lines (53 loc) · 2.36 KB
title sp_syscollector_set_warehouse_database_name (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 03/06/2017
ms.prod sql-non-specified
ms.reviewer
ms.suite
ms.technology
database-engine
ms.tgt_pltfrm
ms.topic language-reference
f1_keywords
sp_syscollector_set_warehouse_database_name
sp_syscollector_set_warehouse_database_name_TSQL
dev_langs
TSQL
helpviewer_keywords
sp_syscollector_set_warehouse_database_name
data collector [SQL Server], stored procedures
ms.assetid a85aca1b-8135-4c81-9a05-da5aec76f1ed
caps.latest.revision 17
author JennieHubbard
ms.author jhubbard
manager jhubbard

sp_syscollector_set_warehouse_database_name (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx_md]

Specifies the database name defined in the connection string used to connect to the management data warehouse.

Topic link icon Transact-SQL Syntax Conventions

Syntax

  
sp_syscollector_set_warehouse_database_name [ @database_name = ] 'database_name'  

Arguments

[ @database_name = ] 'database_name'
Is the name of the management data warehouse. database_name is sysname with a default value of NULL.

Return Code Values

0 (success) or 1 (failure)

Remarks

You must disable the data collector before changing the data collector-wide configuration. This procedure fails if the data collector is enabled.

To view the current database name, query the syscollector_config_store system view.

Permissions

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

Examples

The following example sets the name of the management data warehouse to RemoteMDW.

USE msdb;  
GO  
EXEC sp_syscollector_set_warehouse_database_name N'RemoteMDW';  
GO  

See Also

System Stored Procedures (Transact-SQL)