USP_DATALIST_EVENTDATE
Lists all dates on which events occur.
Definition
Copy
CREATE procedure dbo.USP_DATALIST_EVENTDATE
as
set nocount on;
select distinct
EVENT.STARTDATE
from
dbo.EVENT
where
EVENT.PROGRAMID is not null