USP_SIMPLEDATALIST_WORKSTATION_ALLDEFINEDPRINTERS

Gets every unique printer attached to the workstations in the system

Definition

Copy


create procedure dbo.USP_SIMPLEDATALIST_WORKSTATION_ALLDEFINEDPRINTERS as
    select 
        distinct PRINTERNAME as VALUE
        PRINTERNAME as LABEL
    from dbo.WORKSTATIONPRINTER
    order by LABEL