Microproject Report (DMS)
Microproject Report (DMS)
Microproject Report (DMS)
5.0Resources Required:-
Sr No Name Of Specification Qty Remarks
Resource/material
1 Computer system I3 processor 1
2 Oracle 11g 1
3 Text editor Microsoft word 1
4 Internet Information source 1
CERTIFICATE
This is to certify that,
Aditi ghugarkar
Dnyaneshwari navthar
Vaishnavi patil
Sakshi sangle
Has satisfactorily completed the micro- project entitled,
TABLE OF CONTENTS
PAGENO
SR.NO. CONTENT
1. INTRODUCTION 1
2. DATATYPES 2
3. DATA REQUIREMENTS
ENTITIES 3
ATTRIBUTES
RELATIONSHIP-CARDINALITY
5. DATABASE SCHEMA 8
7. TEST-CASE QUERIES 14
8. CONCLUSION 17
1.INTRODUCTION
The project topic name is ‘STUDENT ACADEMIC INFORMATION
MANAGEMENT’. In this entity diagram the academic information of student is described the
student takes admission in college then student has attribute that is id, name, address, mobile
number in this case we can access all information of student so the id is a primary key. Student
has role in department has attributes department id &department name.
Department has many roles as follows:
1)Department handles a many courses and this courses organized by the university of college.
2)Department conducts exam organized by university.
3)Department takes record of student result.
4)Department maintenance attendance of student.
So, this entity diagram show the academic information of student. Student academic
Management allows the user to store the student details and the attendance details.
OBJECTIVE: - It keeps track of all the information about the student in the academic
information, their id, name and address in the this system. The user will find it easy in this
automated system rather than using the manual writing system. The system contains a
database where all the information will be stored safely.
2. Data types and its description
1. Integer: one optional sign character (+ or -) followed by at least one digit (0-9).
Leading and trailing blanks are ignored. No other character is allowed.
2. Varchar: It is used to store alpha numeric characters. In this data type we can
set the maximum number of characters up to 8000 ranges by defaults SQL server
will set the size to 50 characters range.
3. Date: The DATE data type accepts date values. No parameters are required
when declaring a DATE data type. Date values should be specified in the form:
YYYY-MM-DD. However, Point Base will also accept single digits entries for
month and day values.
4. Number :The NUMBER data type accepts float & numeric values. parameters
are required when size is to be given.
3. Data Requirements
Entities
COLLEGE
STUDENT
DEPARTMENT
COURSE
UNIVERSITY
EXAM
RESULT
ATTENDANCE
Attributes
COLLEGE
C_name
Tel_no
Address
STUDENT
S_id
Sname
Address
Dept_id
Mobno
DEPARTMENT
Dept_id
Dept_name
COURSE
C_id
C_name
UNIVERSITY
U_name
Web
EXAM
Seat_no
C_id
Session
RESULT
Seat_no
Marks
Grade
ATTENDANCE
S_id
sname
A_percentage
RELATIONSHIPS - CARDINALITY
The ER-diagram depicts the various relationships among entities, considering each
object as entity. Entity is represented as rectangle shape and relationship represented
as diamond shape. It depicts the relationship between data object. The ER-diagram is
the notation that is used to conduct the data modeling activity.
Address
s
Tel_no C_id C_name u.name
C-name web
hand
college course By university
les
has
have
Dept_id Dept_id
sid Sname C_id
Mob no
hav
e
maint
ain
S_name
A_percentage sid marks
no
sid
grade
attendance result
5. SCHEMA DIAGRAM
Student
S_id Sname Address Dept_id Mobno
Department
Dept_id Dept_nam
e
Course
C_id C_name
Exam
Seat_no C_id Session
Result
Seat_no Marks Grade
Attendance
S_id A_percentag S_name
e
6. CREATING DATABASE USING MYSQL
Database changed
mysql> create table student(s_id number(4) primary key ,sname varchar(20) not
null,address varchar(20) not null,Dept_id number(4)not null,mobno number(10)
not null) ;
mysql> create table corse(c_id number(4) primary key, c_name varchar(10) not null );
Query OK, 1 row affected (0.08 sec mysql> insert into student
values(1002,'saurabh','vadgaonpan',3322,9146299544);
Query OK, 1 row affected (0.06 sec)
mysql> insert into student
values(1003,'pravin','nimoon',1000,9325134436);
values(1006,'sakshi','nashik',1003,784852686);
Mysql>alter table student add DOB date not null; Query ok,4 rows
affected(0.37sec)
Records:4 Duplicates:0 Warnings:0
Mysql>desc student;
8. CONCLUSION
• SQL database management application which is very well used in the modern world
in organising and manipulating a database.
• Though SQL doesn’t have the GUI interface like Microsoft access is having and they
all manage the database comfortable.
• Depending on the user or users, if an organisation has multiple users then they should
go for SQL server based application.
• This project shows how to create tables in SQL and how to create simple data
manipulation language and data definition language with how to execute them.
5.0 Actual methodology followed:-
1.First,we decide the topic of our project
2.Then we discuss about our project
3.Then we start collecting data from Websites and testbooks
4.Also Take Some ideas from previous semester project
5.Then we start doing our project and complete it on time