You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The name of an operator (notification recipient). This name must be unique and can't contain the percent (`%`) character. *@name* is **sysname**, with no default.
52
52
@@ -71,31 +71,33 @@ The pager address of the operator. This string is passed directly to the e-mail
The time after which[!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.md)] Agent sends pager notification to the specified operator on the weekdays, from Monday through Friday. *@weekday_pager_start_time* is **int**, with a default of `090000`, which indicates 9:00 A.M. on a 24-hour clock, and must be entered using the form `HHmmss`.
74
+
The start time when the[!INCLUDE [ssnoversion-md](../../includes/ssnoversion-md.md)] Agent service sends pager notifications to the operator, from Monday through Friday. *@weekday_pager_start_time* is **int**, with a default of `090000`, which indicates 9:00 A.M. on a 24-hour clock, and must be entered using the form `HHmmss`.
The time after which[!INCLUDE [ssnoversion-md](../../includes/ssnoversion-md.md)] Agent service no longer sends pager notification to the specified operator on the weekdays, from Monday through Friday. *weekday_pager_end_time* is **int**, with a default of `180000`, which indicates 6:00 P.M. on a 24-hour clock, and must be entered using the form `HHmmss`.
78
+
The end time when the[!INCLUDE [ssnoversion-md](../../includes/ssnoversion-md.md)] Agent service no longer sends pager notifications to the operator, from Monday through Friday. *@weekday_pager_end_time* is **int**, with a default of `180000`, which indicates 6:00 P.M. on a 24-hour clock, and must be entered using the form `HHmmss`.
The time after which [!INCLUDE [ssnoversion-md](../../includes/ssnoversion-md.md)] Agent service sends pager notification to the specified operator on Saturdays. *saturday_pager_start_time* is **int**, with a default of `090000`, which indicates 9:00 A.M. on a 24-hour clock, and must be entered using the form `HHmmss`.
82
+
The start time on Saturdays when the [!INCLUDE [ssnoversion-md](../../includes/ssnoversion-md.md)] Agent service sends pager notifications to the operator. *@saturday_pager_start_time* is **int**, with a default of `090000`, which indicates 9:00 A.M. on a 24-hour clock, and must be entered using the form `HHmmss`.
The time after which [!INCLUDE [ssnoversion-md](../../includes/ssnoversion-md.md)] Agent service no longer sends pager notification to the specified operator on Saturdays. *@saturday_pager_end_time* is **int**, with a default of `180000`, which indicates 6:00 P.M. on a 24-hour clock, and must be entered using the form `HHmmss`.
86
+
The end time on Saturdays when the [!INCLUDE [ssnoversion-md](../../includes/ssnoversion-md.md)] Agent service no longer sends pager notifications to the operator. *@saturday_pager_end_time* is **int**, with a default of `180000`, which indicates 6:00 P.M. on a 24-hour clock, and must be entered using the form `HHmmss`.
The time after which [!INCLUDE [ssnoversion-md](../../includes/ssnoversion-md.md)] Agent service sends pager notification to the specified operator on Sundays. *@sunday_pager_start_time* is **int**, with a default of `090000`, which indicates 9:00 A.M. on a 24-hour clock, and must be entered using the form `HHmmss`.
90
+
The start time on Sundays when the [!INCLUDE [ssnoversion-md](../../includes/ssnoversion-md.md)] Agent service sends pager notifications to the operator. *@sunday_pager_start_time* is **int**, with a default of `090000`, which indicates 9:00 A.M. on a 24-hour clock, and must be entered using the form `HHmmss`.
The time after which [!INCLUDE [ssnoversion-md](../../includes/ssnoversion-md.md)] Agent service no longer sends pager notification to the specified operator on Sundays. *@sunday_pager_end_time* is **int**, with a default of `180000`, which indicates 6:00 P.M. on a 24-hour clock, and must be entered using the form `HHmmss`.
94
+
The end time on Sundays when the [!INCLUDE [ssnoversion-md](../../includes/ssnoversion-md.md)] Agent service no longer sends pager notifications to the operator. *@sunday_pager_end_time* is **int**, with a default of `180000`, which indicates 6:00 P.M. on a 24-hour clock, and must be entered using the form `HHmmss`.
95
95
96
96
#### [ @pager_days = ]*pager_days*
97
97
98
-
A number that indicates the days that the operator is available for pages (subject to the specified start/end times). *@pager_days* is **tinyint**, with a default of `0` indicating the operator is never available to receive a page. Valid values are from `0` through `127`. *@pager_days* is calculated by adding the individual values for the required days. For example, from Monday through Friday is `2 + 4 + 8 + 16 + 32 = 62`. The following table lists the value for each day of the week.
98
+
A number that indicates the days that the operator is available for pages (subject to the specified start/end times). *@pager_days* is **tinyint**, with a default of `0`, indicating the operator is never available to receive a page. Valid values are from `0` through `127`. *@pager_days* is calculated by adding the individual values for the required days. For example, from Monday through Friday is `2 + 4 + 8 + 16 + 32 = 62`.
99
+
100
+
The following table lists the value for each day of the week.
99
101
100
102
| Value | Description |
101
103
| --- | --- |
@@ -111,10 +113,17 @@ A number that indicates the days that the operator is available for pages (subje
111
113
112
114
The network address of the operator to whom the network message is sent. *@netsend_address* is **nvarchar(100)**, with a default of `NULL`.
113
115
114
-
#### [ @category_name = ]'*category*'
116
+
#### [ @category_name = ]N'*category_name*'
115
117
116
118
The name of the category for this operator. *@category_name* is **sysname**, with a default of `NULL`.
117
119
120
+
If this value is `NULL`, the operator is added with a default category of `[Uncategorized]`. You can also choose from an existing category, by querying the `syscategories` table in the `msdb` database:
0 commit comments