SlideShare uma empresa Scribd logo
1 de 18
Baixar para ler offline
2012

DBMS of Transport
Company

Data

Project by Awais Ali (@_AwaisAli )
Study in depth analysis of the new transport service named Bilal Travel Lahore the
organization uses the database systems to make the work more efficient error
free & more reliable.

Reliability

Customer
Satisfaction

MBA 3rd B

Federal Urdu University
of Arts, Science & Technology

Submitted to Sir Nasim Qaiser
Introduction

Traveling is a large growing business. It becomes very difficult to keep records for large
number of items, customers and calculating bills. This project is about to study the DBMS of the
organization so we study the DBMS of Bilal Travels-Daewoo Pakistan Express Bus Service Ltd
with its Headquarters in Lahore is operating its service in Lahore, Islamabad, Rawalpindi, and
Faisalabad. We observed the working of the other Bus reservation system and after going
through it, we get to know that there are many operations, which they have to do manually. It
takes a lot of time and cause many errors. Due to this, sometimes a lot of problems occur and
they were facing many disputes with customers. Bilal Travels uses a Database Management
System according to the present technological & informational era, with this system this
organization maintain records of items, seat availability for customers, price of per/seat, bill
generation, cargo services, online booking & E-tag.
The Fleet

First time in Pakistan latest models of
transport with security systems & offering
great features for the customer,
* Refreshment
* Passenger Insurance
* Islamabad Pickup & Drop Shuttle Service
* Tracker System
* E-Tag
* Online Booking
* Cargo Service
* Full A/C Waiting Hall
DBMS for Bilal Travel as Competitive Edge
Objective of this system is to computerize any traveling company to manage data, so
that all the transactions become fast and there should not be any error in transactions like
calculation mistake, bill generation and other things. It replaces all the paper work. It keeps
records of all the bills also, given to the customers, so that user could update his daily accounts.
Record for the E-tag, Online Bookings almost care and back-up procedures must be established
to ensure 100% successful implementation of the computerized Bus reservation system.
Organization Uses following software to manage secure database,

MSWord,
Excel
Windows
Server 2008

PL/SQL
Microsft
Windows
Xp,Vista,7

Oracle






Operating System
Back end
PL/SQL
MS Office Tools
Front End Visual Basic

Visual
Basic
DBMS Compared with Manual System
Drawbacks of Manual system:


Existing system is totally on book and thus a great amount of manual work has to be
done. With the increase of manual work in Bus services and information needs,
automation was necessary.



Needs a lot of working staff and extra attention on all the records.



In existing system, there are various problems like keeping records of items, seat
available, prices of per/seat and fixing bill generation on each bill.



Finding out the details regarding any information was very difficult, as the user has to go
through all the books thoroughly.



Major problem was the lack of security check that was must to be applied.

Advantage of the Software
This software is working with its employee very easy.it has facility to save data in its software.
Only write the command the data will save automatically. We can save record in the daily basic
work that a daily basic employee and monthly basic employee, purchase of goods and parts.
This software is work on query that is perform by the user and perform by the administrator.it
is easy to query for database.
Relation between Owner and Bus

E-Tag
Number

Route
Number

BUS

Bus
Number

Owner

Ownership

Name
Address

Contact
Number

Bus
Number

Relation between Owner and Government:-

Tax No.

Dept.
Name

Owner No.

Licenses
Government

Owner No.

OWNER

Owner
name

Owner
address
Relation between Bus and Passenger
Passenger
Name

Bus no.

Passenger
Number

Travel

Passenger

Bus Route
name

Bus

Bus Route
name

Baggage

Relation between Agent and Owner:-

Address

Phone

Number

Collection

Owner

Name

Address

Number

Agent

Name

Phone
Database Structure
FIVE tables have been used in this System

1. PASSANGER: Keeps record of bills.
S. No. Field Name

Data type

Description

1.

PNO

: VARCHAR2(15 Shows the NUMBER of Passenger

2.

PNAME

: Varchar(30)

It shows NAME OF passenger

3.

PADDRESS

: Varchar2(20)

It shows ADDRESS of passenger

4.

routename : Varchar(20)

It shows the ROUTE name

5.

PBaggage

It shows the baggage items

: Varchar(20)

2. Owner: Keeps record of owner of record.
S. No. Field Name

Data type

Description

1.

ownername

: number(10) Name of owner

2.

Ownerno

: Varchar(20) Number of owner

3.

Ownerphno

: Number(10) Phone number of owner

4.

Owneraddress : Varchar(34) Address of owner

5

Bus no

: Varchar2(7) Bus no that has owner
3. Government: Keep record of username or password

s.no.

Field name

Data type

Description

1

Deptno.

Varchar2(15)

Show the dept.
no.

2

Ownerno

Varchar2(30)

Show

No.

of

owner
3

Taxno

Varchar2(40)

Show the tax no.

4.BUS: Keeps record of username or password.
S. No. Field Name

Data type
: varchar(7)

Description

1.

Busno

No. of bus

2.

busroutename : Varchar(20) Route of the bus

5. AGENT: Keeps record of username or password.

S no.

Field name

Data type

Description

1

Aname

Varchar2(15)

Agent name

2

Aaddress

Varchar2(30)

Address of agent

3

Ano

Varchar2(20)

No of agent
Table creation :Bus table
create table bus(Bus no. varchar2(10),body no. varchar2(8),route name varchar2(20));
Passenger table
create table passanger(pno varchar2(15),Pname varchar2(30),Paddess varchar2(30),routename
varchar2(23));
Agent table
create table agent(Aname varchar2(15),Aaddess varchar2(30),Ano varchar2(40));
Government table
create table government(deptname varchar2(15),ownerno varchar2(30),taxno varchar2(40));
Owner table
create table owner(ownerno varchar2(11),name varchar2(30),address varchar2(40),mobileno
number(20),busno varchar2(10));
View structure of the database:
Query:
Desc bus;
Desc passanger;
Desc owner;
Desc agent;
Desc government;

TABLE: BUS
NAME
Busno
Bodyno
Routename

TYPE
VARCHAR2(10)
VARCHAR2(8)
Varchar2(20)

TABLE: Passenger
NAME
Pno
Pname
ADDRESS
Routename

TYPE
VARCHAR2(15)
Varchar2(30)
VARCHAR2(30)
Varchar2(23)

TABLE: Owner
NAME
Ownerno
NAME
Address
Mobileno
Busno

TYPE
Varchar2(11)
VARCHAR2(30)
VARCHAR2(40)
number(10)
VARCHAR2(10)
TABLE: Agent
NAME
Aname
Aaddress
Ano

TYPE
Varchar2(15)
VARCHAR2(30)
VARCHAR2(40)

TABLE: Government

NAME
Deptname
Ownerno
Taxno

TYPE
Varchar2(15)
Varchar2(30)
Varchar2(40)

Insert record into table: BUS
Query:
Insert into bus values (‘pb21 1234’, ‘br2315’,’lhr to rwp’);
Output:
1 row created.

Insert record into table: Passenger
Query:
Insert into passenger values (‘an1234’, ‘Ali’, ’12,sector-2,Lahore’, ‘lhr to rwp);
Output:
1 row created.
Insert record into table: Owner
Query:
Insert into owner values (‘10802432’, ‘Asad Ali’, ‘17/2 Rawalpindi’, 88776655,’lhr1234’);
Insert
into
owner
Islamabad’,77886655,’lhr3245’);

values

(10810085,‘Salman

Abid’,’12/3

Insert into owner values (10802343, ‘Khalid’, ‘12/2 Lahore,88221133, ’lhr6732’);
Insert into owner values (108968, ‘Ali’, ‘19/2 Ravi Road Lahore’, 7646321,’lhr6534’);
Insert into owner values
Faisalabad’,8456721,’lhr9843’);

(10812344,

‘Khalid

Khan,

’12,main

Owner
no

NAME

ADDRESS

Contact Number

Bus
Number

10802432

Asad Ali

17/2 Rawalpindi

88776655

Lhr1234

10810085

12/3, Islamabad

77886655

Lhr3245

10802343

Salman
Abid
Khalid

12/2 Lahore

88221133

Lhr6732

108968

Ali

19/2 Ravi Road Lahore

77646321

Lhr6534

10812344

Khalid
Khan

12,
Main
Faisalabad

8456721

Lhr9843

Output:
1 row created.
1 row created.
1 row created.
1 row created.
1 row created.

road

road
CONCLUSION

In this project we study the Bus reservation system. It is developed in visual basic and the
database has been built in PL/SQL only, keeping in mind the specifications of the system. Apart
from MS-Access the organization have also implemented other database software like Oracle or
SQL. For elaborating the system we have used simple data flow diagrams.
Overall the project teaches us the essential skills like:
1.

Using system analysis and design techniques like data flow diagram in designing the
system.

2.

Understanding programming logic and language along with utilities like reports, forms,
queries etc. in Visual Basic and PL/SQL.

Mais conteúdo relacionado

Mais procurados

Vehicle management system
Vehicle management systemVehicle management system
Vehicle management system
Mohd Saddam
 
Presentation on Railway Reservation System
Presentation on Railway Reservation SystemPresentation on Railway Reservation System
Presentation on Railway Reservation System
Priyanka Sharma
 

Mais procurados (20)

Tour and Travel Management System ppt
Tour and Travel Management System pptTour and Travel Management System ppt
Tour and Travel Management System ppt
 
Online Bus ticket reservation
Online Bus ticket reservationOnline Bus ticket reservation
Online Bus ticket reservation
 
srs for railway reservation system
 srs for railway reservation system srs for railway reservation system
srs for railway reservation system
 
Online railway reservation system
Online railway reservation systemOnline railway reservation system
Online railway reservation system
 
Car rental Project Ppt
Car rental Project PptCar rental Project Ppt
Car rental Project Ppt
 
Bus Ticket Management System
Bus Ticket Management SystemBus Ticket Management System
Bus Ticket Management System
 
Online bus ticket booking
Online bus ticket bookingOnline bus ticket booking
Online bus ticket booking
 
Online Tours and travel
Online Tours and travelOnline Tours and travel
Online Tours and travel
 
Online railway reservation system
Online railway reservation systemOnline railway reservation system
Online railway reservation system
 
Vehicle management system
Vehicle management systemVehicle management system
Vehicle management system
 
TOURISM AND TRAVELLING MANAGEMENT SYSTEM
TOURISM AND TRAVELLING MANAGEMENT SYSTEMTOURISM AND TRAVELLING MANAGEMENT SYSTEM
TOURISM AND TRAVELLING MANAGEMENT SYSTEM
 
Railway Reservation System - Software Engineering
Railway Reservation System - Software EngineeringRailway Reservation System - Software Engineering
Railway Reservation System - Software Engineering
 
Online Bus Reservation
Online Bus ReservationOnline Bus Reservation
Online Bus Reservation
 
Airline Reservation System
Airline Reservation SystemAirline Reservation System
Airline Reservation System
 
Bus management system
Bus management systemBus management system
Bus management system
 
Online Cab Booking System Final Report
Online Cab Booking System Final ReportOnline Cab Booking System Final Report
Online Cab Booking System Final Report
 
Presentation on Railway Reservation System
Presentation on Railway Reservation SystemPresentation on Railway Reservation System
Presentation on Railway Reservation System
 
Travel Package Management System
Travel Package Management SystemTravel Package Management System
Travel Package Management System
 
Airline reservation system project report (1)
Airline reservation system project report (1)Airline reservation system project report (1)
Airline reservation system project report (1)
 
Web based tourism system
Web based tourism system Web based tourism system
Web based tourism system
 

Destaque

Bus Ticket Management System Documentation
Bus Ticket Management System DocumentationBus Ticket Management System Documentation
Bus Ticket Management System Documentation
muzammil siddiq
 
Tourism ppt
Tourism pptTourism ppt
Tourism ppt
SBrooker
 
Hospital management system project
Hospital management system projectHospital management system project
Hospital management system project
Himani Chopra
 
Types of databases
Types of databasesTypes of databases
Types of databases
PAQUIAAIZEL
 

Destaque (20)

Transportation management system
Transportation management systemTransportation management system
Transportation management system
 
Transportation Management Ppt
Transportation Management PptTransportation Management Ppt
Transportation Management Ppt
 
Bus Booking Management System
Bus Booking Management SystemBus Booking Management System
Bus Booking Management System
 
Airlines Database Design
Airlines Database DesignAirlines Database Design
Airlines Database Design
 
Bus Ticket Management System Documentation
Bus Ticket Management System DocumentationBus Ticket Management System Documentation
Bus Ticket Management System Documentation
 
Tourism ppt
Tourism pptTourism ppt
Tourism ppt
 
Online Bus Reservatiom System
Online Bus Reservatiom SystemOnline Bus Reservatiom System
Online Bus Reservatiom System
 
GPS based Bus management system
GPS based Bus management systemGPS based Bus management system
GPS based Bus management system
 
ONLINE BUS BOOKING SYSTEM
ONLINE BUS BOOKING SYSTEMONLINE BUS BOOKING SYSTEM
ONLINE BUS BOOKING SYSTEM
 
Hospital management system project
Hospital management system projectHospital management system project
Hospital management system project
 
Dbms project list
Dbms project listDbms project list
Dbms project list
 
Transportation management
Transportation managementTransportation management
Transportation management
 
College transport management system
College transport management systemCollege transport management system
College transport management system
 
bus ticketing managment system
bus ticketing managment systembus ticketing managment system
bus ticketing managment system
 
Dbms Project
Dbms ProjectDbms Project
Dbms Project
 
Project of Airline booking system
Project of Airline booking systemProject of Airline booking system
Project of Airline booking system
 
PPT for Hotel Management System
PPT for Hotel Management SystemPPT for Hotel Management System
PPT for Hotel Management System
 
PPT FOR ONLINE HOTEL MANAGEMENT
PPT FOR ONLINE HOTEL MANAGEMENTPPT FOR ONLINE HOTEL MANAGEMENT
PPT FOR ONLINE HOTEL MANAGEMENT
 
Types of databases
Types of databasesTypes of databases
Types of databases
 
Transportation ppt
Transportation pptTransportation ppt
Transportation ppt
 

Semelhante a Database Management System of Travel Co.

Documentation of railway reservation system
Documentation of railway reservation systemDocumentation of railway reservation system
Documentation of railway reservation system
Sandip Murari
 

Semelhante a Database Management System of Travel Co. (20)

Documentation of railway reservation system
Documentation of railway reservation systemDocumentation of railway reservation system
Documentation of railway reservation system
 
Railway Management PPT.pptx
Railway Management PPT.pptxRailway Management PPT.pptx
Railway Management PPT.pptx
 
Highway Terminal Station Information System
Highway Terminal Station Information SystemHighway Terminal Station Information System
Highway Terminal Station Information System
 
Highway Terminal Station Information System
Highway Terminal Station Information SystemHighway Terminal Station Information System
Highway Terminal Station Information System
 
Online Bus Reservation System
Online Bus Reservation SystemOnline Bus Reservation System
Online Bus Reservation System
 
Railway Reservation System initial django.pptx
Railway Reservation System initial django.pptxRailway Reservation System initial django.pptx
Railway Reservation System initial django.pptx
 
Bus transportation query report
Bus transportation query reportBus transportation query report
Bus transportation query report
 
Database project design report of Centro bus transit system
Database project design report of Centro bus transit systemDatabase project design report of Centro bus transit system
Database project design report of Centro bus transit system
 
SE project.docx
SE project.docxSE project.docx
SE project.docx
 
VEHICLE SERVICE MANAGEMENT SYSTEM USING WEB APPLICATION.pptx
VEHICLE SERVICE MANAGEMENT SYSTEM USING WEB APPLICATION.pptxVEHICLE SERVICE MANAGEMENT SYSTEM USING WEB APPLICATION.pptx
VEHICLE SERVICE MANAGEMENT SYSTEM USING WEB APPLICATION.pptx
 
A Review on Smart Bus Ticketing System using QR-Code
A Review on Smart Bus Ticketing System using QR-CodeA Review on Smart Bus Ticketing System using QR-Code
A Review on Smart Bus Ticketing System using QR-Code
 
Mca titles
Mca titlesMca titles
Mca titles
 
E-TICKETING ON RAILWAY TICKET RESERVATION
E-TICKETING ON RAILWAY TICKET RESERVATIONE-TICKETING ON RAILWAY TICKET RESERVATION
E-TICKETING ON RAILWAY TICKET RESERVATION
 
Commutetown
CommutetownCommutetown
Commutetown
 
Commutetown
CommutetownCommutetown
Commutetown
 
Commutetown
CommutetownCommutetown
Commutetown
 
Vignan SIS Transport.ppt
Vignan SIS Transport.pptVignan SIS Transport.ppt
Vignan SIS Transport.ppt
 
Mca titles
Mca titlesMca titles
Mca titles
 
Mca titles
Mca titlesMca titles
Mca titles
 
Mca titles
Mca titlesMca titles
Mca titles
 

Último

Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...
Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...
Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...
daisycvs
 
Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...
Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...
Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...
Sheetaleventcompany
 
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
amitlee9823
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
 
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
amitlee9823
 
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
dollysharma2066
 
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
amitlee9823
 
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
lizamodels9
 

Último (20)

👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
 
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best ServicesMysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
 
It will be International Nurses' Day on 12 May
It will be International Nurses' Day on 12 MayIt will be International Nurses' Day on 12 May
It will be International Nurses' Day on 12 May
 
Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...
Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...
Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...
 
Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1
 
Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...
Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...
Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...
 
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
 
How to Get Started in Social Media for Art League City
How to Get Started in Social Media for Art League CityHow to Get Started in Social Media for Art League City
How to Get Started in Social Media for Art League City
 
Falcon Invoice Discounting: The best investment platform in india for investors
Falcon Invoice Discounting: The best investment platform in india for investorsFalcon Invoice Discounting: The best investment platform in india for investors
Falcon Invoice Discounting: The best investment platform in india for investors
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
 
Cracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxCracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptx
 
Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023
 
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
 
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
 
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
 
(Anamika) VIP Call Girls Napur Call Now 8617697112 Napur Escorts 24x7
(Anamika) VIP Call Girls Napur Call Now 8617697112 Napur Escorts 24x7(Anamika) VIP Call Girls Napur Call Now 8617697112 Napur Escorts 24x7
(Anamika) VIP Call Girls Napur Call Now 8617697112 Napur Escorts 24x7
 
BAGALUR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
BAGALUR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRLBAGALUR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
BAGALUR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
 
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
 

Database Management System of Travel Co.

  • 1. 2012 DBMS of Transport Company Data Project by Awais Ali (@_AwaisAli ) Study in depth analysis of the new transport service named Bilal Travel Lahore the organization uses the database systems to make the work more efficient error free & more reliable. Reliability Customer Satisfaction MBA 3rd B Federal Urdu University of Arts, Science & Technology Submitted to Sir Nasim Qaiser
  • 2. Introduction Traveling is a large growing business. It becomes very difficult to keep records for large number of items, customers and calculating bills. This project is about to study the DBMS of the organization so we study the DBMS of Bilal Travels-Daewoo Pakistan Express Bus Service Ltd with its Headquarters in Lahore is operating its service in Lahore, Islamabad, Rawalpindi, and Faisalabad. We observed the working of the other Bus reservation system and after going through it, we get to know that there are many operations, which they have to do manually. It takes a lot of time and cause many errors. Due to this, sometimes a lot of problems occur and they were facing many disputes with customers. Bilal Travels uses a Database Management System according to the present technological & informational era, with this system this organization maintain records of items, seat availability for customers, price of per/seat, bill generation, cargo services, online booking & E-tag.
  • 3. The Fleet First time in Pakistan latest models of transport with security systems & offering great features for the customer, * Refreshment * Passenger Insurance * Islamabad Pickup & Drop Shuttle Service * Tracker System * E-Tag * Online Booking * Cargo Service * Full A/C Waiting Hall
  • 4. DBMS for Bilal Travel as Competitive Edge Objective of this system is to computerize any traveling company to manage data, so that all the transactions become fast and there should not be any error in transactions like calculation mistake, bill generation and other things. It replaces all the paper work. It keeps records of all the bills also, given to the customers, so that user could update his daily accounts. Record for the E-tag, Online Bookings almost care and back-up procedures must be established to ensure 100% successful implementation of the computerized Bus reservation system. Organization Uses following software to manage secure database, MSWord, Excel Windows Server 2008 PL/SQL Microsft Windows Xp,Vista,7 Oracle     Operating System Back end PL/SQL MS Office Tools Front End Visual Basic Visual Basic
  • 5. DBMS Compared with Manual System Drawbacks of Manual system:  Existing system is totally on book and thus a great amount of manual work has to be done. With the increase of manual work in Bus services and information needs, automation was necessary.  Needs a lot of working staff and extra attention on all the records.  In existing system, there are various problems like keeping records of items, seat available, prices of per/seat and fixing bill generation on each bill.  Finding out the details regarding any information was very difficult, as the user has to go through all the books thoroughly.  Major problem was the lack of security check that was must to be applied. Advantage of the Software This software is working with its employee very easy.it has facility to save data in its software. Only write the command the data will save automatically. We can save record in the daily basic work that a daily basic employee and monthly basic employee, purchase of goods and parts. This software is work on query that is perform by the user and perform by the administrator.it is easy to query for database.
  • 6. Relation between Owner and Bus E-Tag Number Route Number BUS Bus Number Owner Ownership Name Address Contact Number Bus Number Relation between Owner and Government:- Tax No. Dept. Name Owner No. Licenses Government Owner No. OWNER Owner name Owner address
  • 7. Relation between Bus and Passenger Passenger Name Bus no. Passenger Number Travel Passenger Bus Route name Bus Bus Route name Baggage Relation between Agent and Owner:- Address Phone Number Collection Owner Name Address Number Agent Name Phone
  • 8. Database Structure FIVE tables have been used in this System 1. PASSANGER: Keeps record of bills. S. No. Field Name Data type Description 1. PNO : VARCHAR2(15 Shows the NUMBER of Passenger 2. PNAME : Varchar(30) It shows NAME OF passenger 3. PADDRESS : Varchar2(20) It shows ADDRESS of passenger 4. routename : Varchar(20) It shows the ROUTE name 5. PBaggage It shows the baggage items : Varchar(20) 2. Owner: Keeps record of owner of record. S. No. Field Name Data type Description 1. ownername : number(10) Name of owner 2. Ownerno : Varchar(20) Number of owner 3. Ownerphno : Number(10) Phone number of owner 4. Owneraddress : Varchar(34) Address of owner 5 Bus no : Varchar2(7) Bus no that has owner
  • 9. 3. Government: Keep record of username or password s.no. Field name Data type Description 1 Deptno. Varchar2(15) Show the dept. no. 2 Ownerno Varchar2(30) Show No. of owner 3 Taxno Varchar2(40) Show the tax no. 4.BUS: Keeps record of username or password. S. No. Field Name Data type : varchar(7) Description 1. Busno No. of bus 2. busroutename : Varchar(20) Route of the bus 5. AGENT: Keeps record of username or password. S no. Field name Data type Description 1 Aname Varchar2(15) Agent name 2 Aaddress Varchar2(30) Address of agent 3 Ano Varchar2(20) No of agent
  • 10. Table creation :Bus table create table bus(Bus no. varchar2(10),body no. varchar2(8),route name varchar2(20));
  • 11. Passenger table create table passanger(pno varchar2(15),Pname varchar2(30),Paddess varchar2(30),routename varchar2(23));
  • 12. Agent table create table agent(Aname varchar2(15),Aaddess varchar2(30),Ano varchar2(40));
  • 13. Government table create table government(deptname varchar2(15),ownerno varchar2(30),taxno varchar2(40));
  • 14. Owner table create table owner(ownerno varchar2(11),name varchar2(30),address varchar2(40),mobileno number(20),busno varchar2(10));
  • 15. View structure of the database: Query: Desc bus; Desc passanger; Desc owner; Desc agent; Desc government; TABLE: BUS NAME Busno Bodyno Routename TYPE VARCHAR2(10) VARCHAR2(8) Varchar2(20) TABLE: Passenger NAME Pno Pname ADDRESS Routename TYPE VARCHAR2(15) Varchar2(30) VARCHAR2(30) Varchar2(23) TABLE: Owner NAME Ownerno NAME Address Mobileno Busno TYPE Varchar2(11) VARCHAR2(30) VARCHAR2(40) number(10) VARCHAR2(10)
  • 16. TABLE: Agent NAME Aname Aaddress Ano TYPE Varchar2(15) VARCHAR2(30) VARCHAR2(40) TABLE: Government NAME Deptname Ownerno Taxno TYPE Varchar2(15) Varchar2(30) Varchar2(40) Insert record into table: BUS Query: Insert into bus values (‘pb21 1234’, ‘br2315’,’lhr to rwp’); Output: 1 row created. Insert record into table: Passenger Query: Insert into passenger values (‘an1234’, ‘Ali’, ’12,sector-2,Lahore’, ‘lhr to rwp); Output: 1 row created.
  • 17. Insert record into table: Owner Query: Insert into owner values (‘10802432’, ‘Asad Ali’, ‘17/2 Rawalpindi’, 88776655,’lhr1234’); Insert into owner Islamabad’,77886655,’lhr3245’); values (10810085,‘Salman Abid’,’12/3 Insert into owner values (10802343, ‘Khalid’, ‘12/2 Lahore,88221133, ’lhr6732’); Insert into owner values (108968, ‘Ali’, ‘19/2 Ravi Road Lahore’, 7646321,’lhr6534’); Insert into owner values Faisalabad’,8456721,’lhr9843’); (10812344, ‘Khalid Khan, ’12,main Owner no NAME ADDRESS Contact Number Bus Number 10802432 Asad Ali 17/2 Rawalpindi 88776655 Lhr1234 10810085 12/3, Islamabad 77886655 Lhr3245 10802343 Salman Abid Khalid 12/2 Lahore 88221133 Lhr6732 108968 Ali 19/2 Ravi Road Lahore 77646321 Lhr6534 10812344 Khalid Khan 12, Main Faisalabad 8456721 Lhr9843 Output: 1 row created. 1 row created. 1 row created. 1 row created. 1 row created. road road
  • 18. CONCLUSION In this project we study the Bus reservation system. It is developed in visual basic and the database has been built in PL/SQL only, keeping in mind the specifications of the system. Apart from MS-Access the organization have also implemented other database software like Oracle or SQL. For elaborating the system we have used simple data flow diagrams. Overall the project teaches us the essential skills like: 1. Using system analysis and design techniques like data flow diagram in designing the system. 2. Understanding programming logic and language along with utilities like reports, forms, queries etc. in Visual Basic and PL/SQL.