Computer Science | UNIT-1 | Database | Class-12

SHARE:

Class 12 Computer Science UNIT-1 : Database Data: Data are the collection of raw facts and figure which are unorganized, uninterrupted and ...

Class 12
Computer Science

UNIT-1 : Database

Data: Data are the collection of raw facts and figure which are unorganized, uninterrupted and isolated, which doesn’t give any particular sense. They are randomly gathered. So that they can be processed to obtain the desired result.

Ram, 17, Pokhara, 18

Information: Information are the processed form of data. Information gives a meaning full result after data are interpreted.

Ram 17 year old and lives in Pokhara 18.

As we know, very organization from the prehistoric time deals with data and information. Data are very necessary for organization to operate. In previous time, data used to be collected randomly and were not organized in any particular order which leads to following drawbacks.

  • Some information was stored in more than one file. (Data redundancy).
  • Difficult to present data from the user’s view.
  • Data security was one of the major problem.
  • Data processing and manipulation were difficult.
  • Data retrieval were very slow.

Hence, concept of database arise in order to overcome the above drawbacks or limitations. Database is collection of interrelated data or entities stored in tabular form. It gives very useful information for an organization during data manipulation and decision making. It provides a base for foundation for managing large volume of data in a well-organized manner. Simply database is a systematic and organized form of data so that user can retrieve or access data whenever required within no time. For eg, telephone directory, dictionary, marks ledger, customer records etc.


Roll No

Name

Address

Contact

1

Aaishu karki

Pokhara

0090786

2

Bishaka Lohani

Bhairab tole

3452423

[Note: Column of a database table is known a field. Row of a database table is known as record.]

In past people used file processing system / flat file system in order to store data and keep record due to difficulty in processing file and having following imitations. This system are no longer in use rather people use DBMS in to order Keep record systematically, scientifically and securely.

Limitations of flat file system.

  • Data security system is one of the major problem in flat file system.
  • Data Sharing was almost impossible or difficult.
  • Some record was stored in more than one file. (Data redundancy)
  • Difficult to represent data through user prospective.
  • It is difficult for processing complex queries.

DBMS (Database Management System)

DBMS is a computerized record keeping system. It is a software that defines, manipulates and manage the database. It allows to access the file, update the record and retrieve data as requested. In other word, DBMS is defined as the collection of interrelated data and set of programs to access their data. The collection of data is usually a database which contains the information about any particular organization. The primary goal of DBMS is to provide an effective and efficient environment for both data retrieval and storing data in database. For example MS Access, Oracle, MY SQL, Fox-Pro, D-base etc.

Advantages of DBMS

  • Sharing data: - Using DBMS, data stored in database can be shared among multiple users or computer. For example, branches of bank share data from database.
  • Reduce data redundancy: - Data redundancy refer to duplication or repetition of same data over and over. DBMS reduces such type of unnecessary repetition of data.
  • Data backup and recovery: - Using DBMS, we can easily create spare copy of original files and documents that can be later used in case of accidental or intentional loss and damages.
  • Data security: - Using DBMS we can restrict use of database to the unauthorized person. It helps to ensure date security.
  • Multiple user interface: - DBMS facilitates sharing of data which means same data can be accessed from multiple device and location. Hence, user can experience multiple interface to access same set of data.
  • Data Integrity: - Data Integrity refers to consistency of data. Using database we can arrange same sort of data in a like order. We can define and enforce constraints for data integrity.

Disadvantages of DBMS

  • Expensive: - It may be expensive to run and operate DBMS for any organization.
  • Changing Technology: - It is very much difficult to incorporate latest changing technology in existing system. In order to create and maintain database technical manpower and trainings are required.
  • Backup is needed: - Since data maybe damage anytime accidentally or intentionally. So, it is mandatory to create a backup.

Database Model

There are different forms of Database Management system. Each characterized by the way where data are defined and structured. This arrangement of data in several structure are known as data base model. Different types of database model.

Hierarchical database model

It is one of the oldest type of database model. In this model data are represented in the forms of record, each record has multiple field or attributes. All records are arranged in database as tree like structure. The relationship between the records is called parent child relationship in which one child record relates to only a single parent i.e. child possess property only property of a single parent. Here child are restricted to use the property of a parent to whom it doesn't belong.

Advantages

  • It is the simplest and the easiest model.
  • It supports one to one or one to many relationship.
  • Searching is easier and faster if parent is known.

Disadvantages

  • It is an old fashion and outdated database model.
  • It doesn’t support many to one relationship.
  • It doesn’t reduce data redundancy because some data are written over different places.

Network database model

This network model replace hierarchical model due to some limitation on the model. Suppose an employee relates to two different department then hierarchical model cannot be able to arrange record in proper place. So, network database model was emerged to arrange non-hierarchical database. The structure of database is more like graph rather than tree structure. A network model consists of collection of record which are interrelated to each other with the help of relationship. Each records have multiple fields and each field has only one data value. In this type of model a parent may have multiple child, as well as child can have multiple parent.

Advantages

  • It accepts many to many relationships. So, it is more flexible.
  • It reduces data redundancy.
  • This network mode is simple and easy to design.
  • Searching is faster due to use of multi-directional pointer.

Disadvantages

  • Needs long program to handle the relationship.
  • Lack of structural independence.
  • Less security

Relational database model

In relational database model, the data are organized into tables which contains multiple row and columns. These tables are called relations. A row in a table represents a relationship among a set of values. Since, a table is collection of such relationship. It is generally referred to the mathematical term relations from which the relational database model derives its name. It is also known as RDBMS.

Note: The database system which stores and display data in tabular format of rows and column like spreadsheet is known as RDBMS. It is the most practical DBMS those days. For example, MS-Access, MY SQL, Oracle etc.

Advantages

  • There is less data redundancy.
  • Breaking of complex database into simple is very much easier.
  • Database processing is faster than other model.

Disadvantage

  • Establishing more relationships complex.
  • It requires powerful computer and data storage device.

Centralized database VS Distributed database

Centralized database

It is a simple type which works on client server basis. In this type clients or user are directly connected to the centrally totally located server. This server hosts the data of its client or user and helps them to store and retrieve data as requirement. This type of system are used in small scale industries which doesn't have to deal with large volume of data and user. Centralized database runs on single computer which may have single or multiple user. Since database is centralized, security is not a crucial part here. The maintenance of database is easier because of data are centrally stored. This type of system denote allow unauthorized person to access data.

Advantages

  • Suitable for small scale industries.
  • Operation and maintenance is easier.
  • Since it prevent unauthorized person being accessed to database, it minimizes risk factor.

Disadvantages

  • Data are not secured in this type of system.
  • Not suitable for large scale industries.
  • Failure of centrally located serves will collapse whole network.

Distributed database

This type of database system are complex in structure, instead of storing and retrieving data from centrally located server, it uses several numbers of database and server randomly located at different place. It is the collection of multiple logically interrelated database which are distributed in many geographical location. Since server are located at different locations user can experience a good speed of bandwidth. Similarly, backup and recovery process is lot easier, which makes data more secured. This type of system is used by large organization who has to deal with large volume of data and user all around the world. Since it is distributed in nature there may arises security issue and are costly to maintain and operate. Simply, distributed database system are the collection of several number of centralized database system in different locations.

Advantages

  • Backup and recovery of data is easier.
  • It can handle large volume of data and user all over the word.
  • User can experience high speed bandwidth.

Disadvantages

  • Very expensive to operate and maintain.
  • Data security may be real issue.

Differences between centralized and distributed database system.


Centralized

Distributed

Simple type

Complex type

Located on particular location

Many geographical location

Only one server

Multiple server in many location

Suitable for small scale industries

Suitable for large scale industries

Maintenance is easy

Maintenance is difficult

Security is high

Security is low

Low speed

High Speed

Cheap

Expensive

Failure of server affect whole network

Doesn’t affect whole network

High chance of data loss

Less chance of data loss

Structure query Language (SQL)

SQL stands for Structured Query Language. It is an international standard data base query language for accessing and managing data in the database. SQL was introduced and developed by IBM in early 1970’s. It was able to control relational database. SQL is not a complete programming language. It is only used for communicating with database. SQL has statement for data definition (DDL), data manipulation (DML) and data control (DCL). A query is a request to a DBMS for the retrieval, modification, insertion and deletion of the data from database.

SQL is made of three sub languages: DDL, DML and DCL

  • DDL (Data Definition Language): DDL is used by the database designer and programmers to specify the content and the structure of table. It is used to define the physical characteristics of record. It includes commands that manipulate the structure of object such as tables: For e.g. to create table

Syntax:

CREATE TABLE table_name (field_name1 data_type1 field_name2 data_type2 ………);

CREATE TABLE Student (SN Number Fname text);

  • DML (Data Manipulation Language): DML is related with manipulation of records such as retrieval, sorting, display and deletion of records or data. It helps user to use query and display report of the table. It provide technique for processing the database. It includes commands like insert, delete, select, and update to manipulate the information stored in the database.

Syntax:

INSERT INTO table_name VALUES (list of values);

INSERT INTO student VALUES (1 RAM);

  • DCL (Data Control Language): All provides additional feature for security of table and database. It includes commands for controlling data and access to the database. Some of the example of this command are grant, commit, etc.

Entity Relationship Database model (ER Model)

The entity relationship database model (ER diagram) is based on the perception of a real world that contains a collection of basic object called entities and relationship among these objects. The ER diagram is an overall logical structure of database that can be expressed graphically. It was developed to facilitate database design. The major objectives of ER diagram is to show relationship among different entities. It has following components.

  • Entity: The distinguishable object of this real world is known as entities. It has a set of properties which uniquely identifies an entity. For e.g. if student is an entity then his/her name may be property. It is denoted by rectangle.
  • Attributes: Attributes are the properties possessed by an entity. They are represented by ellipse or oval sign. For e.g. If student is an entity then its attribute can be registration number, name, roll no, class, address, etc.
  • Link: The flow of information is indicated by the link in ER diagram. It is simply denoted by a line. It is a connection of entity, attributes and relationships.
  • Relationships: A relationship is a association among several entities. It is represented by diamond. For e.g. if teachers and students are two entities the association can be derived as teacher teachers students. It shows meaningful dependencies between several entities. There are 3 types of relationships. One to one. One to many, many to many.

DBA (Database Administrator)

DBA is the most responsible person in an organization with sound knowledge of DBMS. He/she is the overall administrator of the program. He/she has the maximum amount of privileges for accessing database and defining the role of the employee which use the system. The main goal of DBA is to keep the database server up to date, secure and provide information to the user on demand.

Qualities of good DBA

  • He/she should have sound and complete knowledge about DBMS and its operation.
  • He/she should be familiar with several DBMS packages such as MS Access, MY SQL, Oracle etc.
  • He/she should have depth knowledge about the OS in which database server is running.
  • He/she should have good understanding of network architecture.
  • He/she should have good database designing skill.

Responsibilities

  • DBA has responsibility to install, monitor, and upgrade database server.
  • He/she should has responsibility to maintain database security by creating backup for recovery.
  • He/she has responsibility to conduct training on the uses of database.
  • DBA defines user privilege, relationships and manages form, reports in database.

Normalization (v.imp)

The process of breaking down or decomposing as complex relation into simple relation. It reduces redundancy (unnecessary repetition of data) using principle of non-loss decomposition in which table are reduce to smaller tables without loss of information.

Normalization is the database design process in which complex database table is broken down into simple separate tables. It makes data model more flexible and easier to maintain.

EF Code has introduced few rules for normalizing the database in 1970 and these rules are known as normal forms. This process minimizes and controls the duplication of data in a database and also provides a rapid search for data from database.

Unnormalized database

Emp_code

January

Emp_name

February

Address

March

Contact no.

April

Date of birth

May

Department

June

Designation

July

Basic_salary

Daily_allowance

Travel_Allowance

Gross_salary

Tax

Provident _fund

Normalized database

Employee

Salary

Month

Emp_code

Basic_Salary

January

Emp_name

Travel_allowance

February

Address

Daily_allowance

March

Contact no.

Gross_salary

April

Date of birth

Provident_funt

May

Department

Tax

June

Designation

 

July

Advantages of normalization

  • It reduces data redundancy (duplication of data)
  • It improves faster sorting and indexing.
  • It simplifies the structure of the database table.
  • It improves the performance of a system.
  • It avoids loss of information.

Normal Forms

Let us consider a following unnormalized table.

Name

Roll

Class

Sub_name

Sub_marks

Sub_name

Sub_marks

Ram

1

11

Computer

95

Account

78

Sita

1

12

Computer

98

Account

80

Hari

2

11

Computer

80

Account

82

Shyam

2

12

Computer

92

Account

83

A) 1NF (First Normal form)

  • 1NF sets the very basic rules for on organized database.
  • It eliminates duplicate columns from the same table.

·         It creates separate tables from each group of related data and identify each row with a unique column called primary key.

The objective of 1NF is to divide the base data’s into logical units called tables. In above table, we can see that column of subject name and marks are repeated which are eliminated in 1NF.

Name

Roll

Class

Sub_name

Sub_marks

Ram

1

11

Computer

95

Ram

1

11

Account

78

Sita

1

12

Computer

98

Sita

1

12

Account

80

Hari

2

11

Computer

80

Hari

2

11

Account

82

Shyam

2

12

Computer

92

Shyam

2

13

Account

83

B) 2NF (Second Normal form)

  • It further addresses the concept of remaining duplicate data.
  • It should be in first normal form.
  • It removes the date that applies to multiple row of a table and place them in separate tables.

The objective of second NF is to take data i.e. partly dependent upon the primary key and enter the data into another table.

In above table name depends upon roll no and class, subject name only depends upon class, subject marks depends upon name and subject_name. Hence, above table can be decomposed as:

Name

Roll

Class

Ram

1

11

Sita

1

12

Hari

2

11

Shyam

2

12


Subject

Class

Computer

11

Account

11

Computer

12

Account

12


Name

Sub_name

Sub_marks

Ram

Computer

95

Ram

Account

78

Sita

Computer

98

Sita

Account

80

Hari

Computer

80

Hari

Account

82

Shyam

Computer

92

Shyam

Account

83

3NF (Third Normal Form)

  • It should be in second normal form.

·         It removes the column that are not dependent on primary key using 3NF above table can be decomposed as:

Sub_id

Subject

C1

Computer

A1

Account


Class_id

Class

XI

11

XII

12


Std_id

Class

Roll

Class_id

1

Ram

1

XI

2

Sita

1

XII

3

Hari

2

XI

4

Shyam

2

XII


Std_id

Sub_id

Marks

1

C1

95

1

A1

78

2

C1

98

2

A1

80

3

C1

80

3

A1

82

4

C1

92

4

A1

83

Frequently Asked Question

1) Define DBMS. List out objectives of DBMS.
2) What is relational database model? List out the advantage of this model.
3) Differentiate between DBMS and RDBMS with example
4) Describe the centralized and distributed database model with figure.
5) What is hierarchical database model? list out its advantage and disadvantage.
6) What is normalization? Explain the normalization process with example.
7) Define DBA. What are the roles/ responsibilities and criteria of a good DBA?
8) Differentiate between database and DBMS with example.
9) Write short notes on

  • ERD
  • SQL -> DDL, DML, DCL
  • Data Integrity
  • Data security
  • Data Dictionary

COMMENTS

Name

Band TikTok in Nepal,1,Business Studies Notes XII,14,Class 12 Accounting-II Notes,6,Class 12 English Notes,39,Class 12 Nepali Notes,12,Compulsory English : Grade XII,1,Compulsory English XII,40,Computer Science : Grade XII (12),1,Computer Science Notes XII,7,English (Optional),1,Environmental Science,1,Essays,4,Grade XII (12),3,Kheer Recipe,1,Language Development,20,Library and Information Science,1,Model Questions,7,One Act Plays,3,Physics Grade XII (12),1,Poems,5,Recipe,1,Short Stories,7,Subject Table of Contain,1,खीरको रेसिपी,1,
ltr
item
Class 12 Notes Nepal | National Examinations Board(NEB) | +2 Class 12 Question with Solution : Computer Science | UNIT-1 | Database | Class-12
Computer Science | UNIT-1 | Database | Class-12
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg1PNoBl1eJG7MhxK9-eaDTgWpt8ysEo7OeonS0QsVJLrfFsgSKesd-661ts3cEGGCebpvrH2_wfzEz_Mu5d9Mu-plg4C-jRGhBzkCu9PLjqpB17gQTHxR2ZNUTnsHZmtb5LcBCbGh09ormkEJW3-q6cYSA0LPjQZwoeIreFWJXBvFsWChAy6gaXeu6/w640-h388/Computer%20Science-Unit-1-Database.jpg
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg1PNoBl1eJG7MhxK9-eaDTgWpt8ysEo7OeonS0QsVJLrfFsgSKesd-661ts3cEGGCebpvrH2_wfzEz_Mu5d9Mu-plg4C-jRGhBzkCu9PLjqpB17gQTHxR2ZNUTnsHZmtb5LcBCbGh09ormkEJW3-q6cYSA0LPjQZwoeIreFWJXBvFsWChAy6gaXeu6/s72-w640-c-h388/Computer%20Science-Unit-1-Database.jpg
Class 12 Notes Nepal | National Examinations Board(NEB) | +2 Class 12 Question with Solution
https://grade-12notes.blogspot.com/2022/05/computer-science-unit-1-database-class.html
https://grade-12notes.blogspot.com/
https://grade-12notes.blogspot.com/
https://grade-12notes.blogspot.com/2022/05/computer-science-unit-1-database-class.html
true
9174492420796559564
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy Table of Content