sp_add_agent_profile (Transact-SQL)
Tworzy nowy profil, dla której agent replikacja.Ta procedura przechowywana jest wykonywany na dystrybutor na dowolnej bazy danych.
sp_add_agent_profile [ [ @profile_id= ] profile_id OUTPUT ]
, [ @profile_name= ] 'profile_name'
, [ @agent_type= ] 'agent_type' ]
[ , [ @profile_type= ] profile_type ]
[ , [ @description= ] 'description' ]
[ , [ @default= ] default ]
Argumenty
[ @profile_id= ] profile_id
Is the ID associated with the newly inserted profile.profile_id is int and is an optional OUTPUT parameter.Jeśli określona, ma wartość nowej nazwy profilu.[ @profile_name= ] 'profile_name'
Is the name of the profile.profile_name is sysname, with no default.[ @agent_type= ] 'agent_type'
Is the type of replication agent.agent_type is int, with no default, and can be one of these values.Wartość
Description
1
Agent migawka
2
Agent odczytywania dziennika
3
Agent dystrybucji
4
Scalanie Agent
9
Kolejka agenta Reader
[ @profile_type= ] profile_type
Is the type of profile.profile_type is int, with a default of 1.0 wskazuje profil systemowy.1 wskazuje niestandardowego profilu.Tylko profile niestandardowe można tworzyć przy użyciu tej procedura przechowywana, dlatego jest jedyną prawidłową wartość. 1.Only Microsoft SQL Server creates system profiles.
[ @description= ] 'description'
Is a description of the profile.description is nvarchar(3000), with no default.[ @default= ] default
Wskazuje, czy profil domyślny dla agent_type*.* default is bit, z domyślną 0.1 wskazuje, że profil zostanie dodany staną się nowy profil domyślny dla agenta, określony przez agent_type.
Wartości kodów powrotnych
0 (sukces) lub 1 (brak)
Remarks
sp_add_agent_profile jest używany w replikacja migawka, replikacji transakcyjnej i replikacja łączenia.
Agent niestandardowych profilów są dodawane przy użyciu wartości domyślne parametrów agenta.Użycie sp_change_agent_parameter (Transact-SQL) Aby zmienić te domyślne wartości lub sp_add_agent_parameter (Transact-SQL) Aby dodać dodatkowe parametry.
Kiedy sp_add_agent_profile zostanie wykonany, wiersz zostanie dodany do nowego profilu niestandardowego w MSagent_profiles (Transact-SQL) Tabela i skojarzone domyślne parametry dla tego profilu są dodawane do MSagent_parameters (języka Transact-SQL) Tabela.
Uprawnienia
Tylko członkowie sysadmin stała rola serwera mogą być wykonać sp_add_agent_profile.
See Also