I am task with designing a database for online bookings.

I am not looking for a full design as we have had previous exp with online house rental.

What i would like to know, is how do we design a db for booking of hotel, travel, events.

We have some ideas.

Basics...

Have all venues/ events (once/reoccuring) register. That seems like the static data.

But how do i manage a hotel with 100+ rooms?

I am kinda stumped.

Any recommedations would be helpfull, or just thoughts on how i should approach this idea.

I want to design a prototype in acces to show the investor the design, but plan to do the backend in sql 2005/ 2008

link|improve this question

38% accept rate
You can make cool database prototypes here: cakeapp.com a visual SQL editor with ability to render a webapp out of the DB schema. – powtac Oct 1 '09 at 20:14
your app allow a person to book a particular room of a hotel? most let you pick a "class" of room: ocean view, deluxe, penthouse, etc. – KM. Oct 2 '09 at 20:32
1  
this may be of some use to you: stackoverflow.com/questions/1504793/… – KM. Oct 2 '09 at 20:34
Agreed, Attributes, tags should be spread accross a muli dimentional strucute. I am trying to figure out how to help a 100+ service register easily... – astander Oct 2 '09 at 21:08
feedback

2 Answers

up vote 2 down vote accepted

Break the architecture down into the smallest unit you can book. If you are booking rooms, then you could do something along these lines:

Hotel
Name Location HotelID etc.

Rooms
HotelID RoomID Capacity etc.

Client
ClientID Name Address etc.

ClientBooking
ClientID RoomID StartDate EndDate etc.

link|improve this answer
I have downloaded a couple of freeware apss, and reingeneared their dbs, but im stuck on how to handle hotels with 100+ rooms... Detail on the venue is fine, but having a user add 100+ rooms seems cumbersome. How will we go about this? – astander Oct 1 '09 at 20:22
1  
Ask the user about the accomodations of the rooms: number of guests, amenities, etc. and then ask how many rooms of this type exist. This should reduce the entry to however many different rooms there are, not the number of rooms total. – Matthew Jones Oct 1 '09 at 20:23
I have thought about htis, but i need to be able to tell if the room (in a hotel is called 1A or 2B). Now do they need to register each room, or by floor, or by group? – astander Oct 1 '09 at 20:25
If you need to know the room number, then yes, you will need to register each room. However, using my previous comment, you could simply ask the user for the amenities and then ask which room numbers those amenities apply to. – Matthew Jones Oct 1 '09 at 20:27
1  
I would not name the table "Hotels", but "Venues" or something similar and generic – KM. Oct 2 '09 at 20:35
show 6 more comments
feedback

For large room structures, you could provide a way for them to upload a .txt file with the required information and then do an import into the database ussing SSIS. THat's how we get information from clients into our datbase. I upload data from clients inthe millions of rows every day.

link|improve this answer
My biggest problem is the fact that the user will be none of us, so computer ill that they might not even know how to create an upload file... – astander Oct 1 '09 at 20:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.