PageLevel Property
Microsoft SQL Server의 이후 버전에서는 이 기능이 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 않도록 하고, 현재 이 기능을 사용하는 응용 프로그램은 수정하십시오.
The PageLevel property controls SQL Server Agent operator page notification on job completion.
구문
object
.PageLevel [= value]
Parts
object
An expression that evaluates to an object in the Applies To list.value
A long integer that specifies a completion status as described in Settings.
Data Type
Long, enumerated
Modifiable
Read/write
Prototype (C/C++)
HRESULT GetPageLevel(SQLDMO_COMPLETION_TYPE* pRetVal);
HRESULT SetPageLevel(SQLDMO_COMPLETION_TYPE NewValue);
Settings
Constant |
Value |
Description |
---|---|---|
SQLDMOComp_All |
6 |
Pages the operator regardless of success or failure. |
SQLDMOComp_Always |
3 |
Pages the operator regardless of success or failure. |
SQLDMOComp_Failure |
2 |
Pages the operator when job fails to complete successfully. |
SQLDMOComp_None |
0 |
Ignores any completion status. It does not page the operator. |
SQLDMOComp_Success |
1 |
Pages the operator on successful completion. |
SQLDMOComp_Unknown |
4096 |
The value is not valid. |
주의
SQL Server Agent can send notification of job completion using e-mail, network pop-up message, or pager.
To enable a job for pager notification
Set the OperatorToPage property to the name of an existing SQL Server Agent operator.
Set the PageLevel property to control Microsoft SQL Server network pop-up message notification based on job completion.