Just to clarify Sergios post a little:
Create one table with the address data etc.
Create one table that contains only the data about the activities.
Then create a third table that links the address to the activity.
So the venue table would be like
Table Venues
(
Venue_id integer not null primary key,
address
name
phonenr
)
and the activities table would be like
Table Activity
(
Activity_id integer not null primary key,
description varchar(255,
...
)
and the table that links them would be like:
Table Venue_Activity
(
Venue_id integer not null,
Activity_id integer not null,
startdate
stopdate
hours
price
primary key(Venue_id, Activity_id)
Every time you want to add an activity to a venue, you create a new record in the venue_activity table, with the venue_id and activity_id of the venue and activity.
So if a venue has three activities, the venue_activity table has three records with that venue's id.