You are on page 1of 24

MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION

PILLAI HOC Collage of ENGINEERING AND


TECHNOLOGY, RASAYANI

DIPLOMA SECTION(1148)

MICRO PROJECT
ACADEMIC YEAR: 2021-22

TITLE OF PROJECT

ER Diagram

Program: DIPLOMA IN COMPUTER ENGINEERING Program


Code: C03I
Course: Database Management System
Course Code: 22319
Name of the Guide: Sumit Dalvi

MAHARASHTRA STATE BOARD OF TECHNICAL


EDUCATION Certificate
This is to certify that Ms . Siddhi Manik Gharat

Roll No. 06 of 3-Semester of Diploma in Computer Engineering of Institute PILLAI


HOC Collage of Engineering and Technology Rasayani Diploma
section(Code:1148) has completed the Micro Project satisfactorily in
SubjectDatabase Management System for the academic year 2021-22 as
prescribed in the curriculum.

Place:Rasayni Enrollment No:2011480092

Date:03/01/2022 Exam. Seat No: 116783


Subject Teacher Head of the Department Principal

MAHARASHTRA STATE BOARD OF TECHNICAL


EDUCATION Certificate
This is to certify that Ms. Sanjivani Shivkumar Phulmali

Roll No.07 of 3-Semester of Diploma in Computer Engineering of Institute PILLAI


HOC Collage of Engineering and Technology Rasayani Diploma
section(Code:1148) has completed the Micro Project satisfactorily in
SubjectDatabase Management System for the academic year 2021-22 as
prescribed in the curriculum.

Place:Rasayni Enrollment No:2011480093

Date:03/01/2022 Exam. Seat No:116784


Subject Teacher Head of the Department Principal

MAHARASHTRA STATE BOARD OF TECHNICAL


EDUCATION Certificate
This is to certify that Mr. Midhun Mohandas

Roll No.08 of 3-Semester of Diploma in Computer Engineering of Institute PILLAI


HOC Collage of Engineering and Technology Rasayani Diploma
section(Code:1148) has completed the Micro Project satisfactorily in
SubjectDatabase Management System for the academic year 2021-22 as
prescribed in the curriculum.

Place:Rasayni Enrollment No: 2011480094

Date:03/01/2022 Exam. Seat No: 116785

Subject Teacher Head of the Department Principal


Group Details:

Sr.No. Names of Group Member Roll Enrollment No. EXAM Seat


No. No.

1 Siddhi Gharat 06 2011480092 116783

2 Sanjivani PhulmaliI 07 2011480093 116784

3 Midhun Mohandas 08 2011480094 116785

Name of the Guide: Sumit Dalvi


WEEKLY PROGRESS REPORT
MICRO PROJECT
DATE OF SIGN OF
SR.NO. WEEK ACTIVITY OBSERVATION THE GUIDE

1 1st Group form

2 2nd Topic selection

3 3rd Information collection

4 4th Images collection

5 5th Start to make Project

6 6th Continue making project

7 7th Last finishing

8 8th Divided parts among members

9 9th Take guidance of sir

10 10th Presentation preparation

11 11th Presentation preparation


12 12th Deliver presentation

Signature of the Guide

ANNEXURE II
Evaluation Sheet for the Micro Project
Academic Year: 2021-22
Name of the Faculty: Sumit Dalvi
Course: Database Management System
Course Code:22319
Semester: 3
Title of the Project: ER Diagram

COs addressed by Micro Project:

A: Design Normalised database on given data.

B: Creat and Manage Database Using SQL Command.

C: Write PL/SQL code for given database

D: Apply security and confidentiality on given Database.

Major learning outcomes achieved by students by doing the project:


Practical Outcome: Draw the ER Diagram of the given Database
and identify relationship between the entities

Unit outcomes in Cognitive domain: Develops problem solving skills with both theoretical
and The objectives of the course Outcomes in Affective domain:
A: Demonstrate working as a leader/a team member
B: Maintain tools and equipment
C: follow ethical practices
Comments/suggestions about team work /leadership/inter-personal communication (if
any):
Through this group project team work , time management, responsibility , responding,
opinions, and value are important .
Roll No. Student Name Marks out of 6 Marks out of
for performance 4for
in group activity performance
in oral/
(D5 Col.8) presentation
(D5 Col.9) Total out
of 10

06 Siddhi Manik Gharat

07 Sanjivani Phulmali

08 Midhun Mohandas

(Signature of Faculty)
DBMS
BANK MANAGEMENT SYSTEM (MICRO PROJECT)

ER diagram of Bank Management System:


1) Identify Entity
● Bank
● Branch
● Account's
● Customer
● Employee
● Loan

Rough diagram
Code:-

create table B_M_S (Account_no number ,


bank_name varchar2(20),
custumor_name varchar2(15), address
varchar2(20),
primary key (Account_no) --table 1
);
insert into B_M_S values(45826,'AXIS BANK','Sophia','Mumbai');
insert into B_M_S values(32226,'IPPB BANK','James','New
Mumbai'); insert into B_M_S values(77826,'UCO BANK','Mia','Puna');
insert into B_M_S values(27826,'CENTRAL BANK','Lisa','Panvel');
select * from B_M_S

create table BMS (Account_no


number, loan number, age number,
phone_no number, branch number ,
primary key(Account_no)
); --table 2
insert into BMS values(45826,100000,38,8463422442,22);
insert into BMS values(32226,600000,42,9674297263,85);
insert into BMS values(77826,50000,25,9999933333,11);
insert into BMS values(27826,200000,32,6873268476,55);
select * from BMS
select bank_name,custumor_name,address,loan from B_M_S left join BMS on
B_M_S.Account_no=BMS.Account_no

create synonym BB for B_M_S;


select * from BB;

create view BB_view AS select Account_no,bank_name,custumor_name from BB;


create view BMS_view1 AS select Account_no,bank_name,custumor_name,address
from BB where address='Mumbai';
select * from BB_view; select
* from BMS_view1;
select REPLACE('custumor','omer','umer') from BB
select upper (custumor_name) from BB where Account_no=27826
select lower (custumor_name) from BB where Account_no=27826
select age ,avg (loan) from BMS group by age
select age ,avg (loan) from BMS group by age order by avg(loan);
Delete from BB where Account_no=27826;
Drop synonyms BB;
Output:-
THANK YOU

You might also like