sp_changedistributor_property(Transact-SQL)
배포자의 속성을 변경합니다. 이 저장 프로시저는 모든 데이터베이스의 배포자에서 실행될 수 있습니다.
구문
sp_changedistributor_property [ [ @property= ] 'property' ]
[ , [ @value= ] 'value' ]
인수
[ @property=] 'property'
지정된 배포자의 속성입니다. property는 sysname이며 다음 값 중 하나일 수 있습니다.값 설명 heartbeat_interval
진행률 메시지를 기록하지 않고 에이전트를 실행할 수 있는 최대 시간(분)입니다.
NULL(기본값)
사용 가능한 모든 property 값을 출력합니다.
- [ @value=] 'value'
지정된 배포자 속성에 대한 값입니다. value는 **varchar(255)**이며 기본값은 NULL입니다.
반환 코드 값
0(성공) 또는 1(실패)
주의
sp_changedistributor_property는 모든 유형의 복제에서 사용됩니다.
사용 권한
sysadmin 고정 서버 역할의 멤버만 sp_changedistributor_property를 실행할 수 있습니다.
예
-- Change the heartbeat interval at the Distributor to 5 minutes.
USE master
exec sp_changedistributor_property
@property = N'heartbeat_interval',
@value = 5;
GO
참고 항목
참조
sp_adddistributor(Transact-SQL)
sp_dropdistributor(Transact-SQL)
sp_helpdistributor(Transact-SQL)
복제 저장 프로시저(Transact-SQL)
관련 자료
How to: View and Modify Publisher and Distributor Properties (Replication Transact-SQL Programming)