sp_update_notification(Transact-SQL)
적용 대상: SQL Server
경고 알림의 알림 방법을 업데이트합니다.
구문
sp_update_notification
[ @alert_name = ] N'alert_name'
, [ @operator_name = ] N'operator_name'
, [ @notification_method = ] notification_method
[ ; ]
인수
[ @alert_name = ] N'alert_name'
이 알림과 연결된 경고의 이름입니다. @alert_name sysname이며 기본값은 없습니다.
[ @operator_name = ] N'operator_name'
경고가 발생할 때 알림을 받을 운영자입니다. @operator_name 기본값이 없는 sysname입니다.
[ @notification_method = ] notification_method
연산자에게 알림을 받는 메서드입니다. @notification_method tinyint이며 이러한 값 중 하나 이상이 될 수 있습니다.
값 | 설명 |
---|---|
1 |
이메일 |
2 |
호출기 |
4 |
net send |
7 |
모든 메서드 |
반환 코드 값
0
(성공) 또는 1
(실패).
설명
sp_update_notification
는 데이터베이스에서 msdb
실행되어야 합니다.
지정된 notification_method 사용하여 필요한 주소 정보가 없는 운영자에 대한 알림을 업데이트할 수 있습니다. 전자 메일 메시지 또는 호출기 알림을 보낼 때 오류가 발생하면 SQL Server 에이전트 오류 로그에 오류가 보고됩니다.
사용 권한
이 저장 프로시저를 실행하려면 사용자에게 sysadmin 고정 서버 역할이 부여되어야 합니다.
예제
다음 예제에서는 경고Test Alert
에 대해 전송된 François Ajenstat
알림에 대한 알림 방법을 수정합니다.
USE msdb;
GO
EXEC dbo.sp_update_notification
@alert_name = N'Test Alert',
@operator_name = N'François Ajenstat',
@notification_method = 7;
GO