USP_SIMPLEDATALIST_SITES

List of all sites in the system.

Definition

Copy


CREATE procedure dbo.USP_SIMPLEDATALIST_SITES

as                

    set nocount on;

    select 
        [ID] as VALUE
        [NAME] as LABEL 
    from 
        dbo.SITE
    order by 
        [NAME];