0% found this document useful (0 votes)
17 views

Intro To Dbms

Uploaded by

mani1449336
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views

Intro To Dbms

Uploaded by

mani1449336
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 13

 Sign In
 Home
 Saved Videos
 Courses

Data Structures and Algorithms
ML & Data Science
Web Development
Languages
Interview Corner
CS Subjects
Jobs
Practice
Contests
 GBlog
 Puzzles
 What's New ?
Change Language
 Aptitude
 Engineering Mathematics
 Discrete Mathematics
 Operating System
 DBMS
 Computer Networks
 Digital Logic and Design
 C Programming
 Data Structures
 Algorithms
 Theory of Computation
 Compiler Design
 Computer Org and Architecture

Open In App
Introduction of DBMS (Database
Management System)
Last Updated : 02 Sep, 2024



A database is a collection of interrelated data that helps in the
efficient retrieval, insertion, and deletion of data from the database
and organizes the data in the form of tables, views, schemas,
reports, etc. For Example, a university database organizes the data
about students, faculty, admin staff, etc. which helps in the efficient
retrieval, insertion, and deletion of data from it.
What is DBMS?
A Database Management System (DBMS) is a software system that
is designed to manage and organize data in a structured manner. It
allows users to create, modify, and query a database, as well as
manage the security and access controls for that database. DBMS
provides an environment to store and retrieve data in convenient
and efficient manner.
Key Features of DBMS
 Data modeling: A DBMS provides tools for creating and
modifying data models, which define the structure and
relationships of the data in a database.
 Data storage and retrieval: A DBMS is responsible for
storing and retrieving data from the database, and can provide
various methods for searching and querying the data.
 Concurrency control: A DBMS provides mechanisms for
controlling concurrent access to the database, to ensure that
multiple users can access the data without conflicting with
each other.
 Data integrity and security: A DBMS provides tools for
enforcing data integrity and security constraints, such as
constraints on the values of data and access controls that
restrict who can access the data.
 Backup and recovery: A DBMS provides mechanisms for
backing up and recovering the data in the event of a system
failure.
 DBMS can be classified into two types: Relational
Database Management System (RDBMS) and Non-Relational
Database Management System (NoSQL or Non-SQL)
 RDBMS: Data is organized in the form of tables and each
table has a set of rows and columns. The data are related to
each other through primary and foreign keys.
 NoSQL: Data is organized in the form of key-value pairs,
documents, graphs, or column-based. These are designed to
handle large-scale, high-performance scenarios.
Types of DBMS
1. Relational Database Management System
(RDBMS): Data is organized into tables (relations) with rows
and columns, and the relationships between the data are
managed through primary and foreign keys. SQL (Structured
Query Language) is used to query and manipulate the data.
2. NoSQL DBMS: Designed for high-performance scenarios
and large-scale data, NoSQL databases store data in various
non-relational formats such as key-value pairs, documents,
graphs, or columns.
3. Object-Oriented DBMS (OODBMS): Stores data as
objects, similar to those used in object-oriented
programming, allowing for complex data representations
and relationships
Database Languages
 Data Definition Language
 Data Manipulation Language
 Data Control Language
 Transactional Control Language
Data Definition Language (DDL)
DDL is the short name for Data Definition Language, which deals
with database schemas and descriptions, of how the data should
reside in the database.
 CREATE: to create a database and its objects like (table,
index, views, store procedure, function, and triggers)
 ALTER: alters the structure of the existing database
 DROP: delete objects from the database
 TRUNCATE: remove all records from a table, including all
spaces allocated for the records are removed
 COMMENT: add comments to the data dictionary
 RENAME: rename an object
Data Manipulation Language (DML)
DML is the short name for Data Manipulation Language which deals
with data manipulation and includes most common SQL statements
such SELECT, INSERT, UPDATE, DELETE, etc., and it is used to store,
modify, retrieve, delete and update data in a database. Data query
language(DQL) is the subset of “Data Manipulation Language”.
The most common command of DQL is SELECT statement. SELECT
statement help on retrieving the data from the table without
changing anything in the table.
 SELECT: retrieve data from a database
 INSERT: insert data into a table
 UPDATE: updates existing data within a table
 DELETE: Delete all records from a database table
 MERGE: UPSERT operation (insert or update)
 CALL: call a PL/SQL or Java subprogram
 EXPLAIN PLAN: interpretation of the data access path
 LOCK TABLE: concurrency Control
Data Control Language (DCL)
DCL is short for Data Control Language which acts as an access
specifier to the database.(basically to grant and revoke permissions
to users in the database
 GRANT: grant permissions to the user for running
DML(SELECT, INSERT, DELETE,…) commands on the table
 REVOKE: revoke permissions to the user for running
DML(SELECT, INSERT, DELETE,…) command on the specified
table
Transactional Control Language (TCL)
TCL is short for Transactional Control Language which acts as an
manager for all types of transactional data and all transactions.
Some of the command of TCL are
 Roll Back: Used to cancel or Undo changes made in the
database
 Commit: It is used to apply or save changes in the database
 Save Point: It is used to save the data on the temporary basis
in the database
Data Query Language (DQL)
Data query language(DQL) is the subset of “Data Manipulation
Language”. The most common command of DQL is 1the SELECT
statement. SELECT statement helps us in retrieving the data from
the table without changing anything or modifying the table. DQL is
very important for retrieval of essential data from a database.
Paradigm Shift from File System to DBMS
File System manages data using files on a hard disk. Users are
allowed to create, delete, and update the files according to their
requirements. Let us consider the example of file-based University
Management System. Data of students is available to their
respective Departments, Academics Section, Result Section,
Accounts Section, Hostel Office, etc. Some of the data is common for
all sections like Roll No, Name, Father Name, Address, and Phone
number of students but some data is available to a particular
section only like Hostel allotment number which is a part of the
hostel office. Let us discuss the issues with this system:
 Redundancy of data: Data is said to be redundant if the
same data is copied at many places. If a student wants to
change their Phone number, he or she has to get it updated in
various sections. Similarly, old records must be deleted from
all sections representing that student.
 Inconsistency of Data: Data is said to be inconsistent if
multiple copies of the same data do not match each other. If
the Phone number is different in Accounts Section and
Academics Section, it will be inconsistent. Inconsistency may
be because of typing errors or not updating all copies of the
same data.
 Difficult Data Access: A user should know the exact location
of the file to access data, so the process is very cumbersome
and tedious. If the user wants to search the student hostel
allotment number of a student from 10000 unsorted students’
records, how difficult it can be.
 Unauthorized Access: File Systems may lead to
unauthorized access to data. If a student gets access to a file
having his marks, he can change it in an unauthorized way.
 No Concurrent Access: The access of the same data by
multiple users at the same time is known as concurrency. The
file system does not allow concurrency as data can be
accessed by only one user at a time.
 No Backup and Recovery: The file system does not
incorporate any backup and recovery of data if a file is lost or
corrupted.
These are the main reasons which made a shift from file system to
DBMS. Also See, Advantages of DBMS over File System
Advantages of DBMS
 Data organization: A DBMS allows for the organization and
storage of data in a structured manner, making it easy to
retrieve and query the data as needed.
 Data integrity: A DBMS provides mechanisms for enforcing
data integrity constraints, such as constraints on the values of
data and access controls that restrict who can access the data.
 Concurrent access: A DBMS provides mechanisms for
controlling concurrent access to the database, to ensure that
multiple users can access the data without conflicting with
each other.
 Data security: A DBMS provides tools for managing the
security of the data, such as controlling access to the data and
encrypting sensitive data.
 Backup and recovery: A DBMS provides mechanisms for
backing up and recovering the data in the event of a system
failure.
 Data sharing: A DBMS allows multiple users to access and
share the same data, which can be useful in a collaborative
work environment.
Disadvantages of DBMS
 Complexity: DBMS can be complex to set up and maintain,
requiring specialized knowledge and skills.
 Performance overhead: The use of a DBMS can add
overhead to the performance of an application, especially in
cases where high levels of concurrency are required.
 Scalability: The use of a DBMS can limit the scalability of an
application, since it requires the use of locking and other
synchronization mechanisms to ensure data consistency.
 Cost: The cost of purchasing, maintaining and upgrading a
DBMS can be high, especially for large or complex systems.
 Limited Use Cases: Not all use cases are suitable for a
DBMS, some solutions don’t need high reliability, consistency
or security and may be better served by other types of data
storage.
Applications of DBMS
 Enterprise Information: Sales, accounting, human
resources, Manufacturing, online retailers.
 Banking and Finance Sector: Banks maintaining the
customer details, accounts, loans, banking transactions, credit
card transactions. Finance: Storing the information about sales
and holdings, purchasing of financial stocks and bonds.
 University: Maintaining the information about student course
enrolled information, student grades, staff roles.
 Airlines: Reservations and schedules.
 Telecommunications: Prepaid, postpaid bills maintance.
Conclusion
A Database Management System (DBMS) is an essential tool for
efficiently managing, organizing, and retrieving large volumes of
data across various industries. Its ability to handle data securely,
ensure integrity, support concurrent access, and provide backup
and recovery options makes it indispensable for modern data-driven
applications. While DBMSs come with complexities and costs, their
benefits in terms of data management and security far outweigh the
challenges, making them a crucial component in any data-centric
environment
 Database Management System – Introduction | Set 2
 All DBMS Articles
 DBMS Quizzes

Are you a student in Computer Science or an employed professional


looking to take up the GATE 2025 Exam? Of course, you can get a
good score in it but to get the best score our GATE CS/IT 2025 - Self-
Paced Course is available on GeeksforGeeks to help you with its
preparation. Get comprehensive coverage of all topics of GATE,
detailed explanations, and practice questions for study. Study at
your pace. Flexible and easy-to-follow modules. Do well in GATE to
enhance the prospects of your career. Enroll now and let your journey
to success begin!

A
Anmol Patel

897

Previous Article
Next Article
Similar Reads

Purpose of Database System in DBMS


Nowadays organizations are data-dependent. efficient management
and retrieval of information play a crucial role in their success. A
database is a collection of data that is organized, which is also
called structured data. It can be accessed or stored in a computer
system. It can be managed through a Database Management
System (DBMS), a software us
3 min read

Federated database management system issues


What is a Federated Database Management System? A Federated
Database Management System (FDBMS) is a type of distributed
database management system that allows users to access and
manipulate data stored in multiple databases. It is a system that
integrates data from different sources, providing a single view of the
data to users. This type of system
9 min read

Personnel involved in Database Management System


Many persons are involved in the design, use, and maintenance of a
large database with a few hundred users. Here we will consider
people who may be called "Actors on the Scene", whose jobs involve
the day-to-day use of a large database. Database Administrators:
Administrating the primary (database) and secondary (DBMS and
related software) is the r
5 min read

Database Management System | Dependency


Preserving Decomposition
Dependency Preservation: A Decomposition D = { R1, R2, R3...Rn }
of R is dependency preserving wrt a set F of Functional dependency
if (F1 ? F2 ? … ? Fm)+ = F+. Consider a relation R R ---> F{...with
some functional dependency(FD)....} R is decomposed or divided
into R1 with FD { f1 } and R2 with { f2 }, then there can be three
cases: f1 U f2 =
4 min read

Structure of Database Management System


A Database Management System (DBMS) is software that allows
users to define, store, maintain, and manage data in a structured
and efficient manner. It acts as an intermediary between data and
users, allowing disparate data from different applications to be
managed. A DBMS simplifies the complexity of data processing by
providing tools to organize d
8 min read

Advantages of Database Management System


Database Management System (DBMS) is a collection of interrelated
data and a set of software tools/programs that access, process, and
manipulate data. It allows access, retrieval, and use of that data by
considering appropriate security measures. The Database
Management system (DBMS) is really useful for better data
integration and security. Advant
6 min read

Database Management System - GATE CSE Previous


Year Questions
Solving GATE Previous Year's Questions (PYQs) not only clears the
concepts but also helps to gain flexibility, speed, accuracy, and
understanding of the level of questions generally asked in the GATE
exam, and that eventually helps you to gain good marks in the
examination. Previous Year Questions help a candidate practice and
revise for GATE, whic
5 min read
Database Objects in DBMS
A database object is any defined object in a database that is used to
store or reference data.Anything which we make from create
command is known as Database Object.It can be used to hold and
manipulate the data.Some of the examples of database objects are :
view, sequence, indexes, etc. Table - Basic unit of storage;
composed rows and columns View
4 min read

Challenges of database security in DBMS


Seeing the vast increase in volume and speed of threats to
databases and many information assets, research efforts need to be
consider to the following issues such as data quality, intellectual
property rights, and database survivability. Let's discuss them one
by one. 1. Data quality - The database community basically needs
techniques and some org
5 min read

Database Buffer in DBMS


An information base cushion is a transitory stockpiling territory in
primary memory. It permits putting away information incidentally
while moving to start with one spot and then onto the next. An
information base buffer stores a duplicate of plate blocks. However,
a variant of square duplicates on a circle might be more seasoned
than form in the c
3 min read

Article Tags :
 DBMS
 CBSE - Class 11
 DBMS Basics
 school-programming

Corporate & Communications Address:- A-143, 9th Floor, Sovereign Corporate Tower,
Sector- 136, Noida, Uttar Pradesh (201305) | Registered Address:- K 061, Tower K,
Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh,
201305

 Company
 About Us
 Legal
 In Media
 Contact Us
 Advertise with us
 GFG Corporate Solution
 Placement Training Program
 GeeksforGeeks Community
 Languages
 Python
 Java
 C++
 PHP
 GoLang
 SQL
 R Language
 Android Tutorial
 Tutorials Archive
 DSA
 Data Structures
 Algorithms
 DSA for Beginners
 Basic DSA Problems
 DSA Roadmap
 Top 100 DSA Interview Problems
 DSA Roadmap by Sandeep Jain
 All Cheat Sheets
 Data Science & ML
 Data Science With Python
 Data Science For Beginner
 Machine Learning
 ML Maths
 Data Visualisation
 Pandas
 NumPy
 NLP
 Deep Learning
 Web Technologies
 HTML
 CSS
 JavaScript
 TypeScript
 ReactJS
 NextJS
 Bootstrap
 Web Design
 Python Tutorial
 Python Programming Examples
 Python Projects
 Python Tkinter
 Web Scraping
 OpenCV Tutorial
 Python Interview Question
 Django
 Computer Science
 Operating Systems
 Computer Network
 Database Management System
 Software Engineering
 Digital Logic Design
 Engineering Maths
 Software Development
 Software Testing
 DevOps
 Git
 Linux
 AWS
 Docker
 Kubernetes
 Azure
 GCP
 DevOps Roadmap
 System Design
 High Level Design
 Low Level Design
 UML Diagrams
 Interview Guide
 Design Patterns
 OOAD
 System Design Bootcamp
 Interview Questions
 Inteview Preparation
 Competitive Programming
 Top DS or Algo for CP
 Company-Wise Recruitment Process
 Company-Wise Preparation
 Aptitude Preparation
 Puzzles
 School Subjects
 Mathematics
 Physics
 Chemistry
 Biology
 Social Science
 English Grammar
 Commerce
 World GK
 GeeksforGeeks Videos
 DSA
 Python
 Java
 C++
 Web Development
 Data Science
 CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved

You might also like