|
Sybernet / Supplied Procedures Reference
Release 3.00 Mar 03, 2005 |
|
This procedure allows you to change the title of your Sybercron job while it is running. For long running Sybercron jobs that are being watched with the Sybercron Monitor, this procedure makes it possible to write different messages to the monitor's window. If your procedure is not running in Sybercron, then no action is taken and no error is returned by invoking this function.
Procedure sp_cron_title
(
@TITLE VARCHAR(255)
) ;
| Parameter | Description |
|---|---|
title |
The title string in cron_history that is to be updated. |
The following example illustrates how to call sp_cron_title:
exec http.dbo.sp_cron_title 'Deleting...' -- do some work here exec http.dbo.sp_cron_title 'Updating...' -- do some work here