V_KPICATALOG_UNIQUE_SPNAME

Used to enforce unique values on the KPICATALOG.SPNAME field (which is defined as being unique but not required). This view will contain all non-empty values for this field from the KPICATALOG table.

Fields

Field Field Type Null Description
SPNAME nvarchar(100) SQL stored procedure used to calculate the KPI.

Indexes

Index Name Fields Unique Primary Clustered
UIX_V_KPICATALOG_UNIQUE_SPNAME SPNAME yes yes

Definition

Copy
/*
Generated by Blackbaud AppFx Platform
Date:  12/17/2008 2:06:42 AM
Assembly Version:  Blackbaud.AppFx.Platform.SqlClr, Version=1.7.1271.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE VIEW dbo.V_KPICATALOG_UNIQUE_SPNAME WITH SCHEMABINDING
AS
select [SPNAME] from dbo.KPICATALOG where [SPNAME] <> ''