USP_KPICATALOG_GETMETADATA
Retrieves the meta data for a specified KPI catalog ID.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN |
Definition
Copy
create procedure dbo.USP_KPICATALOG_GETMETADATA(@ID uniqueidentifier)
as
set nocount on;
select SPECXML from dbo.KPICATALOG where ID = @ID;