USP_JOBSCHEDULECODE_GETENTRYDATA
Returns information about a table entry in the "Job Schedule" code table.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | The ID of the table entry for which information is to be retrieved. |
Definition
Copy
/*
Generated by Blackbaud AppFx Platform
Date: 1/27/2010 7:16:36 PM
Assembly Version: Blackbaud.AppFx.Platform.SqlClr, Version=2.5.465.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE PROCEDURE dbo.USP_JOBSCHEDULECODE_GETENTRYDATA
(
@ID uniqueidentifier
)
as
SET NOCOUNT ON;
SELECT
DESCRIPTION,
[ACTIVE],
[SEQUENCE],
TSLONG
FROM dbo.JOBSCHEDULECODE
WHERE ID=@ID;
return 0;