fnEmailJobUpdateDate
Return
| Return Type |
|---|
| datetime |
Definition
Copy
CREATE FUNCTION dbo.fnEmailJobUpdateDate()
RETURNS datetime
AS
BEGIN
RETURN (SELECT UpdateDate FROM ServerStatus WHERE ID = 1)
END