USP_OLAPDATASOURCECATEGORYCODE_GETENTRYDATA
Returns information about a table entry in the "Olap Data Source Category" 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: 2/6/2025 8:52:18 AM
Assembly Version: Blackbaud.AppFx.Platform.SqlClr, Version=4.0.3901.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE PROCEDURE dbo.USP_OLAPDATASOURCECATEGORYCODE_GETENTRYDATA
(
@ID uniqueidentifier
)
as
SET NOCOUNT ON;
SELECT
DESCRIPTION,
[ACTIVE],
[SEQUENCE],
TSLONG
FROM dbo.OLAPDATASOURCECATEGORYCODE
WHERE ID=@ID;
return 0;