oracle8.1.6
select
cal_items.cal_item_id,
0 as n_attachments,
to_char(start_date,'HH:MIpm')as start_time,
start_date as start_date,
to_char(start_date, 'MM/DD/YYYY') as pretty_short_start_date,
to_char(end_date, 'HH:MIpm') as end_time,
nvl(e.name, a.name) as name,
nvl(e.description, a.description) as description,
recurrence_id,
cal_items.item_type_id,
cal_item_types.type as item_type,
on_which_calendar as calendar_id
from acs_activities a,
acs_events e,
timespans s,
time_intervals t,
cal_items,
cal_item_types
where e.timespan_id = s.timespan_id
and s.interval_id = t.interval_id
and e.activity_id = a.activity_id
and e.event_id = :cal_item_id
and cal_items.cal_item_id= :cal_item_id
and cal_item_types.item_type_id(+)= cal_items.item_type_id
select
cal_items.cal_item_id,
(select count(*) from attachments where object_id = cal_item_id) as n_attachments,
to_char(start_date,'HH:MIpm')as start_time,
start_date as start_date,
to_char(start_date, 'MM/DD/YYYY') as pretty_short_start_date,
to_char(end_date, 'HH:MIpm') as end_time,
nvl(e.name, a.name) as name,
nvl(e.description, a.description) as description,
recurrence_id,
cal_items.item_type_id,
cal_item_types.type as item_type,
on_which_calendar as calendar_id
from acs_activities a,
acs_events e,
timespans s,
time_intervals t,
cal_items,
cal_item_types
where e.timespan_id = s.timespan_id
and s.interval_id = t.interval_id
and e.activity_id = a.activity_id
and e.event_id = :cal_item_id
and cal_items.cal_item_id= :cal_item_id
and cal_item_types.item_type_id(+)= cal_items.item_type_id