Diploma in Computer Engineering: Thakur Polytechnic
Diploma in Computer Engineering: Thakur Polytechnic
SYCO A
GROUP NO-2
SUBJECT: DBMS
1. Aastha bhat(06)
2. Vidhi Chalke(07)
3. Shubham Dandekar(08)
4. Yash Dasouni(09)
5. Ralston D’cruz(10)
1|Page
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
CERTIFICATE
This is to certify the following group of students Roll no: 06 to 10 of 3rd semester of
diploma in Computer Engineering (CO) of institute , THAKUR POLYTECHNIC
(CODE:0522) has completed the Micro Project satisfactorily in subject-
DBMS(22319) for the academic year 2020-2021 as prescribed in curriculum.
Seal
Of Institute
2|Page
ACKNOWLEDGEMENT
In performing our project, we had to take the help and guideline of some respected
persons, who deserve our greatest gratitude. The completion of this project gives us
much pleasure.
We would like to show our gratitude to Mrs. Smita dangde and our respected HOD
Mrs. Vaishali Rane, Thakur Polytechnic for giving us a good guideline for project
throughout numerous consultations. We would also like to expand our deepest gratitude
to all those who have directly and indirectly guided us in making this project.
3|Page
PROPOSAL
4|Page
Microproject proposal
dbms
BREIF INTRODUCTION :
1. PL/SQL stands for “Procedural Language extensions to the
Structured Query Language”.
2. SQL is a popular language for both querying and updating data in
the relational database management systems (RDBMS).
3. PL/SQL is an embedded language. PL/SQL only can execute in
an Oracle Database.
4. PL/SQL includes procedural language elements such as
conditions and loops.
5. It allows declaration of constants and variables, procedures and
functions, types and variables of those types, and triggers. It can
handle exceptions (run-time errors).
6. PL/SQL gives high productivity to programmers as it can query,
transform, and update data in a database.
5|Page
Aim of the micro-project :
This micro-project Aims at :
1. Improve the chances of achieving the desired result.
2. Improve productivity and quality of work.
3. Gain a competitive and boost your bottom line .
4. Students will develop industry-orieanted course outcomes.
5. To develop cognitive domain and affected domain of
learning outcomes.
6|Page
Action plan
7|Page
Resouces Required:
8|Page
REPORT
9|Page
REPORT
1.0Rationale
In this project we have used one PC for accessing the internet and
developing a pl/sql procedure. The project revolves around the concept of
sql and its applications. SQL is used to communicate with a database.
According to ANSI (American National Standards Institute), it is the standard
language for relational database management systems. SQL statements are
used to perform tasks such as update data on a database, or retrieve data
from a database.
1.We recieved the overview of the project and understood the concept thoroughly.
10 | P a g e
5.Made the Report.
COMMANDS
CREATE OR REPLACE PROCEDURE withdrawal_proc
IS
account_no_in number(6);
bal_in number(20);
current_balance number(20);
BEGIN
select amount_Balance into current_balance from account where account_No
= account_no_in;
11 | P a g e
create table account(account_no number(5) primary key,account_account_name
varchar2(10),amount_balance number(10));
INSERT INTO account
VALUES(1,'yash',2000);
INSERT INTO account
VALUES(2,'harsh',1000);
INSERT INTO account
VALUES(3,'isha',3000);
INSERT INTO account
VALUES(4,'shradha',4000);
INSERT INTO account
VALUES(5,'omkar',5000);
INSERT INTO account
VALUES(6,'vidhi',6000);
INSERT INTO account
VALUES(7,'aastha',7000);
INSERT INTO account
VALUES(8,'ralston',8000);
INSERT INTO account
VALUES(9,'shubham',9000);
INSERT INTO account
VALUES(10,'om',10000);
OUTPUT :
We learnt to use ORACLE and sql database. Studied how to create a successfully
running database in computer using sql language and procedure of withdarwal of
amount from a bank.
12 | P a g e
With the help of this micro-project we created pl/sql procedure for
withdrawal of amount from bank database.
13 | P a g e