USP_EVENT_GETINFOFORCOPY

Get information required for copying events

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN

Definition

Copy


            create procedure dbo.USP_EVENT_GETINFOFORCOPY
            (
                @ID uniqueidentifier
            )
            as

            select
                NAME,
                PROGRAMID,
                DESCRIPTION,
                CAPACITY,
                STARTTIME as STARTTIMEHM,
                ENDTIME as ENDTIMEHM
            from dbo.EVENT
            where @ID = ID