Aracılığıyla paylaş


sp_syscollector_stop_collection_set (Transact-SQL)

Bir toplama durur küme.

Topic link iconTransact-SQL sözdizimi kuralları

sp_syscollector_stop_collection_set 
        [ [ @collection_set_id = ] collection_set_id ]
        , [ [ @name = ] 'name' ]
        , [ [ @stop_collection_job = ] stop_collection_job ]

Bağımsız değişkenler

  • [collection_set_id =] collection_set_id
    Is the unique local identifier for the collection set.collection_set_id is int with a default value of NULL.collection_set_id must have a value if name is NULL.

  • [adı =] ' name'
    Is the name of the collection set.name is sysname with a default value of NULL.name must have a value if collection_set_id is NULL.

  • [stop_collection_job =] stop_collection_job
    Specifies that the collection job for the collection set be stopped if it is running.stop_collection_job is bit with a default of 1.

    stop_collection_job koleksiyon küme s toplama modu yalnızca geçerli küme için önbelleğe alınmış.Daha fazla bilgi için bkz:sp_syscollector_create_collection_set (Transact-SQL).

Dönüş Kodu Değerleri

0 (başarılı) veya 1 (hata)

Remarks

sp_syscollector_create_collection_set msdb veritabanını sistem bağlamında çalıştırmalısınız.

İzinler

Bu yordamı çalıştırmak yürütmek izni) ile (dc_operator sabit veritabanı rolü üyeliği gerekir.

Örnekler

Aşağıdaki örnekte, bir topluluk durdurulmaktadır küme tanımlayıcısını kullanarak.

USE msdb;
GO
EXEC sp_syscollector_stop_collection_set @collection_set_id = 1;