Download as pdf or txt
Download as pdf or txt
You are on page 1of 10

VISVESVARAYA TECHNOLOGICAL UNIVERSITY

JNANA SANGAMA , BELAGAVI - 590018

AN INTERNSHIP REPORT
TITLE:

“ Designing a Database for Loss Assessment


System ”

SUBMITTED BY

Y VENKAT - 1CR21EC244
KUSHAL M - 1CR21EE039
PRAJWAL CM- 1CR21EC147
INTERNSHIP CARRIED OUT AT
COE- IHCI
ACKNOWLEDGEMENT

We would also like to extend my gratitude to the principal Sir


“Dr. Sanjay Jain “, and vice principal sir
“Dr. B . Narasimha Murthy “ and also our COE Head
“Prof.Ilango “ for providing us with all the facilities that was
required for this project and their guidance and support in
completing our project

DATE :
28/10/2022

Y VENKAT - 1CR21EC244

KUSHAL M - 1CR21EE039

PRAJWAL CM- 1CR21EC147


DECLARATION BY THE CANDIDATES

WE HEREBY DECLARE THAT THE PROJECT ENTITLED


“Designing a Database for Loss Assessment System” IS AN
OUTCOME OF OUR OWN EFFORTS UNDER GUIDANCE
OF “Prof.Ilango”.

THIS PROJECT IS SUBMITTED TO CMR INSTITUTE OF


TECHNOLOGY.

DATE :
Y VENKAT – 1CR21EC244
28/10/2022
KUSHAL M – 1CR21EE039

PRAJWAL CM – 1CR21EC147
DESIGNING A DATABASE FOR LOSS ASSESSMENT SYSTEM

PROBLEM STATEMENT: Designing a Database for Loss Assessment System for direct implementation

SCOPE: Direct Implementation

REQUIREMENTS: Knowledge and working of MySQL and


MySQL Workbench

ABSTRACT: WE HAVE DESIGNED A DATABASE USED FOR LOSS ASSESSMENT IN INSURANCE COMPANY WHICH STORES DATA SUCH
AS CUSTOMER DETAILS, INSURANCE COMPANY DETAILS, CLAIM DETAILS, etc..; THE WHOLE DATABASE HAS BEEN CREATED USING MySQL
AND MySQL WORKBENCH AND HAS BEEN STORED ON A LOCAL SERVER

INTRODUCTION: Data drives everyday decision-making to help businesses complete tasks and accomplish their
goals. Therefore, it requires proper management. Using a database management system helps us to effectively
manage business data to ensure quick decision-making and smooth workflows.
A database management system makes it easier to store, organize, and share data . It pulls data from the various
tools and centralizes its storage so that it can be easily searched and retrieved. It also eliminates risks such as
data loss that delay daily workflows.

BASIC DESIGN PROCESS OF A DATABASE INCLUDES:

1. Determine the purpose of your database


2. Find and organize the information required
3. Divide the information into tables
4. Turn information items into columns
5. Specify primary keys
6. Analyze your design for errors
7. Create the tables and add a few records of sample data. Check to see if you can get the results you want from your
tables
8. Make adjustments to the tables, as needed
STEPS TO DESIGN DATABASE FOR LOSS ASSESSMENT SYSTEM ARE AS FOLLOWS:

1. Consider the insurance data base given below:


The primary key is underlined and the data types are specified.
PERSON (DRIVER – ID: int, name: string, address: string)
CAR (Regno: string, model; string, year: int)
ACCIDENT (Report-number: int; date: date; location: string)
OWNER (driver-id: int, Regno: string)
PARTICIPATED (driver-id: int, regno: string, report-number: int, damage amount: int)

2.Create the above tables by properly specifying the primary keys and the foreign keys.

Sample : | driverid | name | address |


|1000| Ram | Mysore |
|1001 | Sita| Hubli |
|1002 | Sham | Udupi |

3.Update the damage amount for the car with a specific Regno in the accident with report number, add a new accident to
the database.

4.Find the name of person who owned cars that was involved in accident

5.Find the number of accident in which cars belonging to a specific model were involved

6.Create suitable front end for displaying the results.


E - R DIAGRAM

Driver-id Address PERSON Reg.no Model Year

Name OWNER CAR


Report no Location Date

CAR

Participated Accident

Damage amount
Sample Output:

You might also like