| 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 |
|
||
| ms.tgt_pltfrm | |||
| ms.topic | language-reference | ||
| f1_keywords |
|
||
| dev_langs |
|
||
| helpviewer_keywords |
|
||
| ms.assetid | a85aca1b-8135-4c81-9a05-da5aec76f1ed | ||
| caps.latest.revision | 17 | ||
| author | JennieHubbard | ||
| ms.author | jhubbard | ||
| manager | jhubbard |
[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx_md]
Specifies the database name defined in the connection string used to connect to the management data warehouse.
Transact-SQL Syntax Conventions
sp_syscollector_set_warehouse_database_name [ @database_name = ] 'database_name'
[ @database_name = ] 'database_name'
Is the name of the management data warehouse. database_name is sysname with a default value of NULL.
0 (success) or 1 (failure)
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.
Requires membership in the dc_admin (with EXECUTE permission) fixed database role to execute this procedure.
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