USP_SIMPLEDATALIST_OLAPDATASOURCE

List of all OLAP data sources registered in the system

Definition

Copy


CREATE procedure dbo.USP_SIMPLEDATALIST_OLAPDATASOURCE as

    select 
        ID as VALUE
        SOURCENAME as LABEL,
    SOURCEDESCRIPTION AS DESCRIPTION
    from dbo.OLAPDATASOURCE
    order by SOURCENAME;