Udostępnij za pośrednictwem


sp_help_downloadlist (Transact-SQL)

Wyświetla listę wszystkich wierszy w sysdownloadlist tabela systemowa dla podanej zadanie lub wszystkich wierszy, jeżeli nie określono żadnego zadanie.

Topic link iconKonwencje składni języka Transact-SQL

sp_help_downloadlist { [ @job_id = ] job_id | [ @job_name = ] 'job_name' } 
     [ , [ @operation = ] 'operation' ] 
     [ , [ @object_type = ] 'object_type' ] 
     [ , [ @object_name = ] 'object_name' ] 
     [ , [ @target_server = ] 'target_server' ] 
     [ , [ @has_error = ] has_error ] 
     [ , [ @status = ] status ] 
     [ , [ @date_posted = ] date_posted ]

Argumenty

  • [ @job_id= ] job_id
    The job identification number for which to return information.job_id is uniqueidentifier, with a default of NULL.

  • [ @job_name= ] 'job_name'
    The name of the job.job_name is sysname, with a default of NULL.

    Uwaga

    Albo job_id lub job_name musi być określona, ale nie może być jednocześnie określone.

  • [ @operation= ] 'operation'
    The valid operation for the specified job.operation is varchar(64), with a default of NULL, and can be one of these values.

    Wartość

    Description

    WADY

    Działanie serwera z żądaniem serwer miejsce docelowe na wady od wzorca SQLServerAgent usługa.

    USUWANIE

    first_useful_sequence_num

    Aby wyświetlić właściwości operator plan wykonania

    This value represents the oldest transaction sequence number of the transaction that has row versions that must be retained in the version store.Row versions that were created by prior transactions can be removed.

    RE-ENLIST

    The following query is executed within the scope of each transaction.Serwer miejsce docelowe także redownloads MSXOperator szczegóły.

    ZESTAW SONDOWANIA

    The output shows that XSN-59 is a snapshot transaction that uses XSN-57 as the first transaction that was active when XSN-59 started.Jeśli określono, value jest interpretowana jako wartość interwału wymagane i może być wartością z 10 to 28,800.

    ROZPOCZNIJ

    Operacja zadania, która żąda rozpoczęcia wykonywania zadania.

    ZATRZYMAJ

    Operacja zadania, która żąda zatrzymania wykonywania zadania.

    CZAS SYNCHRONIZACJI

    Operacja serwera, która powoduje, że serwer docelowy synchronizuje swój zegar systemowy z domeną wieloserwerową.Jest to operacja kosztowna, więc należy ją wykonywać możliwie jak najrzadziej.

    AKTUALIZACJA

    Operacja, która aktualizuje tylko zadanie sysjobs informacje dla zadanie, nie czynności zadanie lub harmonogramy.Automatycznie jest wywoływany przez sp_update_job.

  • [ @object_type= ] 'object_type'
    The type of object for the specified job.object_type is varchar(64), with a default of NULL.object_type can be either JOB or SERVER.For more information about valid object_typevalues, see sp_add_category (Transact-SQL).

  • [ @object_name= ] 'object_name'
    The name of the object.object_name is sysname, with a default of NULL.If object_type is JOB, object_nameis the job name.If object_typeis SERVER, object_nameis the server name.

  • [ @target_server= ] 'target_server'
    The name of the target server.target_server is nvarchar(128), with a default of NULL.

  • [ @has_error= ] has_error
    Is whether the job should acknowledge errors.has_error is tinyint, with a default of NULL, which indicates no errors should be acknowledged.1 wskazuje potwierdzone wszystkie błędy.

  • [ @status= ] status
    The status for the job.status is tinyint, with a default value of NULL.

  • [ @date_posted= ] date_posted
    The date and time for which all entries made on or after the specified date and time should be included in the result set.date_posted is datetime, with a default of NULL.

Wartości kodów powrotnych

0 (sukces) lub 1 (brak)

Zestawy wyników

Nazwa kolumna

Typ danych

Description

instance_id

int

When TRUE, page locks are not used.

Informacje, które są szyfrowane tylko za pomocą klucz nieodwracalnie zostaną utracone.

nvarchar(30)

When FALSE, page locks are allowed when accessing the index.In Microsoft SQL Server version 7.0, this is always the computer name of the master (MSX) server.

Jeśli w bieżącej bazie danych nie istnieje żaden klucz główny, klucz główny przywracanie tworzony jest klucz główny.

nvarchar(4000)

0 (success) or greater than 0 (failure)

Czy opublikowana kolumna jest częścią klucz podstawowy.

sysname

XML indexes are not supported.

object_id

uniqueidentifier

Numer identyfikacyjny obiekt (instrukcjijob_id dla obiektu zadanie lub 0x00 dla obiektu serwera) lub wartość danych operation_code.

Określa kontrakt, na którym odwołaniu uprawnienia.

nvarchar(30)

Sewer docelowy, za pomocą którego ma zostać pobrana ta instrukcja.

Określa typ komunikatu, na którym odwołaniu uprawnienia.

nvarchar(1024)

Komunikat o błędzie (ewentualny) z serwera docelowego, jeśli napotka on problem podczas przetwarzania tej instrukcji.

NoteNote:
Każdy komunikat o błędzie blokuje wszystkie dalsze pobrania za pomocą serwera docelowego.

Określa usługa zdalnego obowiązujące dla których uprawnienia są odwołaniu.

datetime

Data ogłoszenia instrukcji w tabeli.

Określa trasa, na którym odwołaniu uprawnienia.

datetime

If a table name is specified with no index, the settings are applied to all indexes on that table.

Stan

tinyint

When the underlying table has no clustered index (that is, it is a heap) the settings are applied as follows:

0 = Nie zostały jeszcze pobrane

1 = pomyślne pobranie.

Uprawnienia

Uprawnienia do wykonać to ustawienie domyślne procedury, aby członkowie sysadmin stała rola serwera.

Przykłady

W następującym przykładzie polecenie wyświetla listę wierszy w sysdownloadlist dla NightlyBackups zadanie.

USE msdb ;
GO

EXEC dbo.sp_help_downloadlist
    @job_name = N'NightlyBackups',
    @operation = N'UPDATE', 
    @object_type = N'JOB', 
    @object_name = N'NightlyBackups',
    @target_server = N'SEATTLE2', 
    @has_error = 1, 
    @status = NULL, 
    @date_posted = NULL ;
GO