silviadana
New member
- Local time
- Today, 04:55
- Joined
- Mar 9, 2010
- Messages
- 7
I need help with Conceptual Data Model for Hotel Reservation. Yes, I looked at databaseanswer but my problem is not the same.
My problem sounds like this
The hotel reservation company wishes to realize a system for managing hotel bookings. After hotel affiliation, it will be registered in the computer system with the following data: name, address, category (1*......5*), services offered by the hotel + practiced room prices.
The prices practiced by each hotel are influenced by
- room category (Standard, deluxe)
- Number of beds (1 to 4)
- Period
The system won't record the list of all rooms from each hotel
This is only the first part, before the client who can make a reservation for one single room each time.
Now, I don't know how to make my Conceptual data model.
I think that my tables are
Country (Country_ID,CountryName)
District(District_ID,DistrictName, Country_ID)
City(City_ID, CityName, District_ID)
Category (Category_ID, CAtegoryName)
Hotel (Hotel_ID, City_ID,Category_ID, HotelName)
Services (Service_ID, ServiceName)
HotelServices (Hotel_ID,Service_ID)
RoomType(Type_ID, TypeName,NumberofBeds)
RoomCategory( Category_ID, CAtegoryName)
Rooms(Hotel_ID,Type_ID, CAtegory_ID, NumberofRooms, Description)
Period(Period_ID, Date_s, Date_e)
Rates (Hotel_ID,Type_ID, CAtegory_ID, Period_ID, Rate)
Sorry if I put this kind of question, but I can't realize which is the right way to do the CDM
My problem sounds like this
The hotel reservation company wishes to realize a system for managing hotel bookings. After hotel affiliation, it will be registered in the computer system with the following data: name, address, category (1*......5*), services offered by the hotel + practiced room prices.
The prices practiced by each hotel are influenced by
- room category (Standard, deluxe)
- Number of beds (1 to 4)
- Period
The system won't record the list of all rooms from each hotel
This is only the first part, before the client who can make a reservation for one single room each time.
Now, I don't know how to make my Conceptual data model.
I think that my tables are
Country (Country_ID,CountryName)
District(District_ID,DistrictName, Country_ID)
City(City_ID, CityName, District_ID)
Category (Category_ID, CAtegoryName)
Hotel (Hotel_ID, City_ID,Category_ID, HotelName)
Services (Service_ID, ServiceName)
HotelServices (Hotel_ID,Service_ID)
RoomType(Type_ID, TypeName,NumberofBeds)
RoomCategory( Category_ID, CAtegoryName)
Rooms(Hotel_ID,Type_ID, CAtegory_ID, NumberofRooms, Description)
Period(Period_ID, Date_s, Date_e)
Rates (Hotel_ID,Type_ID, CAtegory_ID, Period_ID, Rate)
Sorry if I put this kind of question, but I can't realize which is the right way to do the CDM