title | description | author | ms.author | ms.reviewer | ms.date | ms.service | ms.subservice | ms.topic | f1_keywords | helpviewer_keywords | dev_langs | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sp_MSchange_snapshot_agent_properties (T-SQL) |
Describes the sp_MSchange_snapshot_agent_properties stored procedure used to change the properties for the Snapshot Agent used for SQL Server Replication. |
markingmyname |
maghan |
randolphwest |
08/21/2024 |
sql |
replication |
reference |
|
|
|
[!INCLUDE SQL Server]
Changes the properties of a Snapshot Agent job that runs at a [!INCLUDE ssVersion2005] or later version Distributor. This stored procedure is used to change properties when the Publisher runs on an instance of [!INCLUDE ssVersion2000]. This stored procedure is executed at the Distributor on the distribution database.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
sp_MSchange_snapshot_agent_properties
[ @publisher = ] N'publisher'
, [ @publisher_db = ] N'publisher_db'
, [ @publication = ] N'publication'
, [ @frequency_type = ] frequency_type
, [ @frequency_interval = ] frequency_interval
, [ @frequency_subday = ] frequency_subday
, [ @frequency_subday_interval = ] frequency_subday_interval
, [ @frequency_relative_interval = ] frequency_relative_interval
, [ @frequency_recurrence_factor = ] frequency_recurrence_factor
, [ @active_start_date = ] active_start_date
, [ @active_end_date = ] active_end_date
, [ @active_start_time_of_day = ] active_start_time_of_day
, [ @active_end_time_of_day = ] active_end_time_of_day
, [ @snapshot_job_name = ] N'snapshot_job_name'
, [ @publisher_security_mode = ] publisher_security_mode
, [ @publisher_login = ] N'publisher_login'
, [ @publisher_password = ] N'publisher_password'
, [ @job_login = ] N'job_login'
, [ @job_password = ] N'job_password'
, [ @publisher_type = ] N'publisher_type'
[ ; ]
The name of the Publisher. @publisher is sysname, with no default.
The name of the publication database. @publisher_db is sysname, with no default.
The name of the publication. @publication is sysname, with no default.
Specifies the frequency with which the Snapshot Agent is executed. @frequency_type is int, and can be one of these values.
Value | Description |
---|---|
1 |
Once |
2 |
On demand |
4 |
Daily |
8 |
Weekly |
10 |
Monthly |
20 |
Monthly, relative to the frequency interval |
40 |
When [!INCLUDE ssNoVersion] Agent starts |
The value to apply to the frequency set by @frequency_type. @frequency_interval is int, with no default.
The units for @frequency_subday_interval. @frequency_subday is int, and can be one of these values.
Value | Description |
---|---|
1 |
Once |
2 |
Second |
4 |
Minute |
8 |
Hour |
The interval for @frequency_subday. @frequency_subday_interval is int, with no default.
The date the Snapshot Agent runs. @frequency_relative_interval is int, with no default.
The recurrence factor used by @frequency_type. @frequency_recurrence_factor is int, with no default.
The date when the Snapshot Agent is first scheduled, formatted as yyyyMMdd
. @active_start_date is int, with no default.
The date when the Snapshot Agent stops being scheduled, formatted as yyyyMMdd
. @active_end_date is int, with no default.
The time of day when the Snapshot Agent is first scheduled, formatted as HHmmss
. @active_start_time_of_day is int, with no default.
The time of day when the Snapshot Agent stops being scheduled, formatted as HHmmss
. @active_end_time_of_day is int, with no default.
The name of an existing Snapshot Agent job name if an existing job is being used. @snapshot_job_name is nvarchar(100), with no default.
The security mode used by the agent when connecting to the Publisher. @publisher_security_mode is int, with no default. A value of 0
must be specified for non-[!INCLUDE ssNoVersion] Publishers.
0
specifies [!INCLUDE ssNoVersion] authentication1
specifies Windows authentication
[!INCLUDE ssNoteWinAuthentication]
The login used when connecting to the Publisher. @publisher_login is sysname, with no default. @publisher_login must be specified when @publisher_security_mode is 0
. If @publisher_login is NULL
and @publisher_security_mode is 1
, then the Windows account specified in @job_login is used when connecting to the Publisher.
The password used when connecting to the Publisher. @publisher_password is nvarchar(524), with no default.
Important
Don't store authentication information in script files. To help improve security, we recommend that you provide login names and passwords at run time.
The login for the Windows account under which the agent runs. @job_login is nvarchar(257), with no default. This Windows account is always used for agent connections to the Distributor. You must supply this parameter when creating a new Snapshot Agent job. This property can't be changed for a non-[!INCLUDE ssNoVersion] Publisher.
The password for the Windows account under which the agent runs. @job_password is sysname, with no default. You must supply this parameter when creating a new Snapshot Agent job.
Important
Don't store authentication information in script files. To help improve security, we recommend that you provide login names and passwords at run time.
Specifies the Publisher type when the Publisher isn't running in an instance of [!INCLUDE ssNoVersion]. @publisher_type is sysname, and can be one of the following values.
Value | Description |
---|---|
MSSQLSERVER |
Specifies a [!INCLUDE ssNoVersion] Publisher. |
ORACLE |
Specifies a standard Oracle Publisher. |
ORACLE GATEWAY |
Specifies an Oracle Gateway Publisher. |
For more information about the differences between an Oracle Publisher and an Oracle Gateway Publisher, see Oracle Publishing Overview.
0
(success) or 1
(failure).
sp_MSchange_snapshot_agent_properties
is used in snapshot replication, transactional replication, and merge replication.
You must specify all parameters when executing sp_MSchange_snapshot_agent_properties
. Execute sp_helppublication_snapshot to return the current properties of the Snapshot Agent job.
You can use sp_changepublication_snapshot on the Publisher to change properties of a Snapshot Agent job.
Only members of the sysadmin fixed server role at the Distributor can execute sp_MSchange_snapshot_agent_properties
.