USP_TIXEVENT_GETINFOFORCOPY
Get information required for copying events
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN |
Definition
Copy
create procedure dbo.USP_TIXEVENT_GETINFOFORCOPY
(
@ID uniqueidentifier
)
as
select
NAME,
PROGRAMID,
DESCRIPTION,
CAPACITY,
dbo.UFN_HOURMINUTE_GETFROMDATE(STARTTIME) as STARTTIMEHM,
dbo.UFN_HOURMINUTE_GETFROMDATE(ENDTIME) as ENDTIMEHM,
EVENTLOCATIONID
from dbo.TIXEVENT
where @ID = ID