Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register todayThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Applies to:
SQL Server
Starts an upload of collection set data if the collection set is enabled.
Important
This stored procedure can only be used for collection sets that are configured for cached mode data collection and upload.
Transact-SQL syntax conventions
sp_syscollector_upload_collection_set
[ [ @collection_set_id = ] collection_set_id ]
[ , [ @name = ] N'name' ]
[ ; ]
The unique local identifier for the collection set. @collection_set_id is int, and must have a value if @name is NULL
.
The name of the collection set. @name is sysname, and must have a value if @collection_set_id is NULL
.
0
(success) or 1
(failure).
Either @collection_set_id or @name must have a value; both can't be NULL
.
This procedure can be used for starting an on-demand upload for a running collection set. It can only be used for collection sets that are configured for cached mode data collection and upload. This enables a user to obtain data to analyze without having to wait for a scheduled upload.
Requires membership in the dc_operator (with EXECUTE permission) fixed database role to execute this procedure.
Does an on-demand upload of a collection set named Simple Collection Set
.
USE msdb;
GO
EXEC sp_syscollector_upload_collection_set @name = 'Simple Collection Set';
Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register today