|
Sybernet / Supplied Functions Reference
Release 3.00 Mar 03, 2005 |
|
This function allows you to send a pager message.
function sp_pager
(
@TELEPHONENUMBER VARCHAR(30)
, @MESSAGE VARCHAR(30)
, @PLATFORM VARCHAR(30)
, @TIMESTAMP DATETIME
, @SENDER VARCHAR(255)
)
| Parameter | Description |
|---|---|
telephonenumber |
The telephone number to dial. |
message |
The numeric message you wish to leave. |
platform |
The platform where Sybercron will issue this command. |
timestamp |
When the message should be left. |
sender |
The e-mail address where the results are mailed. |
The ROW_ID of this entry in the CRON.
The following example illustrates how to call sp_pager.
declare
@row_id int
begin
exec @row_id=http.pager '5328','666'
end