I have the following table
event_ID Int,
Start_Date Date,
End_Date Date,
I want to create a permanent calender table that include the following columns
calender_ID,
Event_ID,
Event_Date,
and I want the Event_Date
to list all dates between Start_date
and End_Date
I'm using SQL Server Express 2008 in Visual Studio
thanks for any kind of help
Hammam