SlideShare a Scribd company logo
Entity Relationship in Airline Reservation System
                                                           Amruta Bhole#1
                                           rd
                               #B. Tech (3 Year), Department of Computer Science & Engineering
                B. P. Poddar Institute of Management and Technology, 137, VIP Road, Kolkata-700052
                                               1
                                                     { bhole_a@yahoo.co.in}


Abstract                                                              The relationship shown in Fig. 1 shows the relation between
This document gives a brief discussion on Entity Relationship in      an airport and airplane type. This shows that an airplane of a
Airline Reservation System, one of the representative application     particular type can land on a particular airport on the
of Database Management System which is used for reservations          scheduled day. Here, ‘airport’ and ‘airplane type’ are entity
and schedule information. Airlines were among the first to use        sets and the diamond ‘can land’ represents the relationship
databases in a geographically distributed manner-terminals            between them. An alternative ER notation for specifying
situated around the world accessed the central database system
                                                                      structural constraints involves associating a pair of integer
through phone lines and other data networks.                          numbers(min, max) with each participation of an entity type E
                                                                      in a relationship R, 0<=min<=max and max>=1. The numbers
Keyword : Entity Relationship diagram(E-R diagram), Database          mean that, for each entity e in E, e must participate in at least
Management System, SQL (Structured Query Language) , Airplane,        min and at most max relationship instances in R at all times.
Model.

                 I. INTRODUCTION
Over the course of last four decades of twentieth century, use
of databases grew in all enterprises. The internet revolution of
the late 1990s sharply increased direct user access to databases.
Organisations converted many of their phone interfaces to
databases into web interfaces, and made a variety of services
online. Therefore, it is very easy to book tickets and find other
information online related to airlines online.

               II. IMPLEMENTATION
The overall logical structure (schema) of a database can be
expressed graphically by an Entity-Relationship diagram(E-R
diagram) . An E-R diagram can express the overall logical
structure of a database graphically. They are simple and clear-
qualities that may well account in large part for the
widespread use of the E-R model. Such a diagram consists of
the following major components:
Rectangles, which       represent entity sets, Ellipses which
represent attributes. Diamonds which represent relationship
sets. Lines which link attributes to entity sets and entity sets to
relationship sets. Double ellipses which represent multi valued
attributes. Dashed ellipses which denote derived attributes.
Double lines which indicate total participation of an entity in a
relationship set. Double rectangles which represent weak                        Fig.2 An ER diagram for an Airline
entity sets.                                                                            Data base schema.
                                                                      (1) The database represents each Airport, keeping its unique
                                                                           Airport Code, the Airport Name, and the City and State in
    Airplane                Can Land                Airport                which the Airport is located.
                                                                      (2) Each airline flight has a unique number, the Airline for
                                                                           the flight, and the Weekdays on which the flight is
                                                                           scheduled (for example, every day of the week except
Fig. 1 Relationship of airport and airplane type                           Sunday can be coded as X7)
                                                                      (3) A flight is composed of one or more flight legs for
                                                                          example, flight number CO1223 from New York to Los
Angeles may have two flight legs, leg 1 from New York to         REFERENCES
    Houston and leg 2 from Houston to Los Angeles. Each
    flight leg has a leg number, Departure airport and                   [1] ‘Database System Concepts’, Mc Graw Hill
    Scheduled Departure Time, and an arrival airport and                 Publications, 4th Edition. by Silberschatz, Korth,
    Scheduled Arrival Time.                                              Sudarshan
(4) A leg instance is an instance of a flight leg on a specific          [2] ‘Fundamentals of Database Systems’, Addison-
    date (for example, CO1223 leg 1 on July 30, 1989). The               wesley publishing company by Ramez Elmasri, Shamkant
    actual departure and arrival airports and Times are                  B. Navathe.
    recorded for each flight leg after the flight leg has been
    concluded. The Number of available seats and the                 .
     airplane used in the leg instance are also kept.
(5) The customer reservations on each leg instance include
    the customer name, phone, and seat number(s) for each
    reservation.
(6) Information on Airplanes and Airplane Types are also
    kept. For each Airplane type (for example, DC-10), the
    Type Name, manufacturing company, and maximum
    number of seats are kept. The Airports in which planes of        .
    this type Can Land are kept in the database. For each
    Airplane, the Airplane Id, Total number of seats, and Type
    are kept.

                   III. APPLICATION
This kind of database is widely used in Airline Reservation
System where all the information related to. Flights,
reservations, customers can be kept without the fear of losing
it as Database Management Systems provide the facility of
Security and Recovery.

                    IV. CONCLUSION
With the help of Entity-Relationship diagram we can create
the required database and perform queries. For example in
case of Airline Reservation System we can make queries like
to find the schedule time of a flight, number of booked seats
in a flight, flight fares etc with the help of query language like
SQL Relational Algebra, Relational Calculus etc. We can
represent a database that conforms to an E-R database schema
by a collection of tables. For each entity set and for each
relationship set in database, there is a unique table to which
we can assign the name of the corresponding entity set and
relationship set. Each table has multiple columns, each of
which has a unique name. Both the E-R model and the
relational-database model are abstract, logical representations
of real-world enterprises. Because the two models employ
similar design principles, we can convert an E-R design into a
relational design. Converting a database representation from
an E-R diagram to a table format is the way we arrive at a
relational-database design from an E-R diagram. Informally, a
relation can be considered to be a table of values.

            ACKNOWLEDGMENT
I would like to thank Mr. Somnath Roy Choudhury, Dept. of
Computer Science and Engineering, B. P. Poddar Institute of
Management and Technology and all those who provided their
valuable guidance and constant support during this project.

More Related Content

PDF
Er2
PDF
June 02 P1
DOCX
Asistencia
DOCX
Erica barrionuevo cv actualizado (1)
DOCX
Juanito y el barco de la enseñanza
PDF
Patrick Bruen on European Venture Capital Woes
DOCX
Erica barrionuevo cv actualizado (1)
Er2
June 02 P1
Asistencia
Erica barrionuevo cv actualizado (1)
Juanito y el barco de la enseñanza
Patrick Bruen on European Venture Capital Woes
Erica barrionuevo cv actualizado (1)

Viewers also liked (7)

DOCX
Mirando hacia un futuro confortable
PDF
Prot. 1152 14 pl 032-2014 - autoriza o poder executivo municipal a proceder...
DOCX
Reflexión ubicuidad.
DOCX
La Ville d'Arras ne doit pas aider les intégristes et les ennemis des droits ...
PDF
Cartel entroido
PDF
DatasheetB9600 fxs en
Mirando hacia un futuro confortable
Prot. 1152 14 pl 032-2014 - autoriza o poder executivo municipal a proceder...
Reflexión ubicuidad.
La Ville d'Arras ne doit pas aider les intégristes et les ennemis des droits ...
Cartel entroido
DatasheetB9600 fxs en
Ad

Similar to S7 amruta bppoddar_2 (20)

PDF
Airline reservation system db design
PPTX
Presentation
PPT
What is inventor2
PDF
Airlineppt 160621085220 (1)
PDF
Airline Reservation System - Software Engineering
PPT
Databaseconcepts
DOCX
simple airline database project..By Amarulla khan, :- amarullakhan8@gmail.com
DOCX
MS Access Database Project proposal on Airline Reservation System
DOCX
Airlines Reservation System
PPT
What is inventor2
DOCX
Airlines Database Design
PPTX
Lec2 Airportfhfgyfgdyudhsmsdisdsidsi.pptx
PDF
Professional erd models
PDF
The following figure shows an example of an EER diagram for a small pr.pdf
PPTX
DATA MODELING.pptx
PPTX
relational schema complete with position
PDF
Airline Reservation System - Java, Servlet ASP.NET, Oracle, HTML
DOCX
DashboardUMUC DATA 620Assignment 3.1Your NameProfessorDateProbl.docx
PDF
Data modeling
PPTX
ER modeling
Airline reservation system db design
Presentation
What is inventor2
Airlineppt 160621085220 (1)
Airline Reservation System - Software Engineering
Databaseconcepts
simple airline database project..By Amarulla khan, :- amarullakhan8@gmail.com
MS Access Database Project proposal on Airline Reservation System
Airlines Reservation System
What is inventor2
Airlines Database Design
Lec2 Airportfhfgyfgdyudhsmsdisdsidsi.pptx
Professional erd models
The following figure shows an example of an EER diagram for a small pr.pdf
DATA MODELING.pptx
relational schema complete with position
Airline Reservation System - Java, Servlet ASP.NET, Oracle, HTML
DashboardUMUC DATA 620Assignment 3.1Your NameProfessorDateProbl.docx
Data modeling
ER modeling
Ad

S7 amruta bppoddar_2

  • 1. Entity Relationship in Airline Reservation System Amruta Bhole#1 rd #B. Tech (3 Year), Department of Computer Science & Engineering B. P. Poddar Institute of Management and Technology, 137, VIP Road, Kolkata-700052 1 { bhole_a@yahoo.co.in} Abstract The relationship shown in Fig. 1 shows the relation between This document gives a brief discussion on Entity Relationship in an airport and airplane type. This shows that an airplane of a Airline Reservation System, one of the representative application particular type can land on a particular airport on the of Database Management System which is used for reservations scheduled day. Here, ‘airport’ and ‘airplane type’ are entity and schedule information. Airlines were among the first to use sets and the diamond ‘can land’ represents the relationship databases in a geographically distributed manner-terminals between them. An alternative ER notation for specifying situated around the world accessed the central database system structural constraints involves associating a pair of integer through phone lines and other data networks. numbers(min, max) with each participation of an entity type E in a relationship R, 0<=min<=max and max>=1. The numbers Keyword : Entity Relationship diagram(E-R diagram), Database mean that, for each entity e in E, e must participate in at least Management System, SQL (Structured Query Language) , Airplane, min and at most max relationship instances in R at all times. Model. I. INTRODUCTION Over the course of last four decades of twentieth century, use of databases grew in all enterprises. The internet revolution of the late 1990s sharply increased direct user access to databases. Organisations converted many of their phone interfaces to databases into web interfaces, and made a variety of services online. Therefore, it is very easy to book tickets and find other information online related to airlines online. II. IMPLEMENTATION The overall logical structure (schema) of a database can be expressed graphically by an Entity-Relationship diagram(E-R diagram) . An E-R diagram can express the overall logical structure of a database graphically. They are simple and clear- qualities that may well account in large part for the widespread use of the E-R model. Such a diagram consists of the following major components: Rectangles, which represent entity sets, Ellipses which represent attributes. Diamonds which represent relationship sets. Lines which link attributes to entity sets and entity sets to relationship sets. Double ellipses which represent multi valued attributes. Dashed ellipses which denote derived attributes. Double lines which indicate total participation of an entity in a relationship set. Double rectangles which represent weak Fig.2 An ER diagram for an Airline entity sets. Data base schema. (1) The database represents each Airport, keeping its unique Airport Code, the Airport Name, and the City and State in Airplane Can Land Airport which the Airport is located. (2) Each airline flight has a unique number, the Airline for the flight, and the Weekdays on which the flight is scheduled (for example, every day of the week except Fig. 1 Relationship of airport and airplane type Sunday can be coded as X7) (3) A flight is composed of one or more flight legs for example, flight number CO1223 from New York to Los
  • 2. Angeles may have two flight legs, leg 1 from New York to REFERENCES Houston and leg 2 from Houston to Los Angeles. Each flight leg has a leg number, Departure airport and [1] ‘Database System Concepts’, Mc Graw Hill Scheduled Departure Time, and an arrival airport and Publications, 4th Edition. by Silberschatz, Korth, Scheduled Arrival Time. Sudarshan (4) A leg instance is an instance of a flight leg on a specific [2] ‘Fundamentals of Database Systems’, Addison- date (for example, CO1223 leg 1 on July 30, 1989). The wesley publishing company by Ramez Elmasri, Shamkant actual departure and arrival airports and Times are B. Navathe. recorded for each flight leg after the flight leg has been concluded. The Number of available seats and the . airplane used in the leg instance are also kept. (5) The customer reservations on each leg instance include the customer name, phone, and seat number(s) for each reservation. (6) Information on Airplanes and Airplane Types are also kept. For each Airplane type (for example, DC-10), the Type Name, manufacturing company, and maximum number of seats are kept. The Airports in which planes of . this type Can Land are kept in the database. For each Airplane, the Airplane Id, Total number of seats, and Type are kept. III. APPLICATION This kind of database is widely used in Airline Reservation System where all the information related to. Flights, reservations, customers can be kept without the fear of losing it as Database Management Systems provide the facility of Security and Recovery. IV. CONCLUSION With the help of Entity-Relationship diagram we can create the required database and perform queries. For example in case of Airline Reservation System we can make queries like to find the schedule time of a flight, number of booked seats in a flight, flight fares etc with the help of query language like SQL Relational Algebra, Relational Calculus etc. We can represent a database that conforms to an E-R database schema by a collection of tables. For each entity set and for each relationship set in database, there is a unique table to which we can assign the name of the corresponding entity set and relationship set. Each table has multiple columns, each of which has a unique name. Both the E-R model and the relational-database model are abstract, logical representations of real-world enterprises. Because the two models employ similar design principles, we can convert an E-R design into a relational design. Converting a database representation from an E-R diagram to a table format is the way we arrive at a relational-database design from an E-R diagram. Informally, a relation can be considered to be a table of values. ACKNOWLEDGMENT I would like to thank Mr. Somnath Roy Choudhury, Dept. of Computer Science and Engineering, B. P. Poddar Institute of Management and Technology and all those who provided their valuable guidance and constant support during this project.