• Home
  • Subscribe
  • Contribute Us
    • Share Your Interview Experience
  • Contact Us
  • About
    • About CSEstack
    • Campus Ambassador
  • Forum & Discus
  • Tools for Geek
  • LeaderBoard
CSEstack

What do you want to Learn Today?

  • Programming
    • Tutorial- C/C++
    • Tutorial- Django
    • Tutorial- Git
    • Tutorial- HTML & CSS
    • Tutorial- Java
    • Tutorial- MySQL
    • Tutorial- Python
    • Competitive Coding Challenges
  • CSE Subject
    • (CD) Compiler Design
    • (CN) Computer Network
    • (COA) Computer Organization & Architecture
    • (DBMS) Database Management System
    • (DS) Data Structure
    • (OS) Operating System
    • (ToA) Theory of Automata
    • (WT) Web Technology
  • Interview Questions
    • Interview Questions- Company Wise
    • Interview Questions- Coding Round
    • Interview Questions- Python
    • Interview Questions- REST API
    • Interview Questions- Web Scraping
    • Interview Questions- HR Round
    • Aptitude Preparation Guide
  • GATE 2022
  • Linux
  • Trend
    • Full Stack Development
    • Artificial Intelligence (AI)
    • BigData
    • Cloud Computing
    • Machine Learning (ML)
  • Write for Us
    • Submit Article
    • Submit Source Code or Program
    • Share Your Interview Experience
  • Tools
    • IDE
    • CV Builder
    • Other Tools …
  • Jobs

9 Advantages of Database Management System over File System

Aniruddha Chaudhari/102660/16
CSE SubjectDBMS

Why does everyone talk about Database Management System (DBMS)?

Why no one uses a simple and traditional text file system to store the data?

This is a common question everyone has.

There should be certain benefits of DBMS system. Right?

In this post, the advantages of database management system over file system have been proposed.

To provide the backbone for any application needs a huge collection of data. That comes with a database management system.

In the early era, data was used to be saved in a simple text file. There is the main disadvantage of using a file system to store the data. We can not structure the data. Data becomes too verbose and cluttered.

Today large scales of databases are available such as IBM DB2, Oracle, SQL. With these databases, data processing, and data manipulation has become so much easy.

9 Advantages of Database Management System over File System:

Table of Contents

  • 1. Concurrency
  • 2. Rich Query Set
  • 3. Indexing
  • 4. Transaction
  • 5. Privileges
  • 6. Remote data access
  • 7. Client Supportive
  • 8. Database management tools
  • 9. Scalability

1. Concurrency

In the file system management, there is no such control over Multi-user access to data. Concurrent updates may lead to data corruption. In modern Database Management System, we can concurrently access data.

2. Rich Query Set

To work on database content, there is database language. It provides rich query set to manipulation database contents.

Ex in SQL language:

select * from <table_name> //to read the data from SQL database

insert into <table_name>// to insert data in SQL database

Select SQL query is used to retrieve the data from the database which comes with the rich query set as aggregate functions, filters and order by clause.

3. Indexing

Internet of Things implies collecting data to drive physical devices without human interaction. Behavioral data is getting collected for Artificial Intelligence. Collecting data and searching for particular information in this huge amount of data has become a tedious job.

To address this issue, data indexing is very much useful.

Indexing is the process of ordering database entries. It helps to improve the speed of data retrieval operations. Indexing makes search quicker. It is one of the advantages of database management system over the file system.

4. Transaction

The transaction is the sequence of operations to be carried out in a single logical work unit. To preserve the reliability of data, the database must ensure ACID properties. ACID stands for Atomicity, Consistency, Isolation and, Durability.

  • Atomicity: It ensures, all or none of the operations to be executed in a single logical unit of work.
  • Consistency: State of the database system should be the same, before starting the transaction and after completion of the transaction.
  • Isolation: If there is multiple transactions are executing, one transaction should not interfere in other transaction.
  • Durability: Database must ensure all the changes to be saved after completion of the transaction.

You can read detail about ACID properties with a real-world example.

With these ACID properties on transactions, it is easy to apply complex updates safely. It adds one more point to be considered for advantages of a database management system.

5. Privileges

It may lead to security issues if we allow admin privileges to all database user. One of the main advantages of Database Management System is that it has a provision to give different privileges to the different users.

The database administrator can have all the privileges to insert into, update and delete the database. The database administrator is supposed to give privileges to other database users. For the end user, accessing data can be allowed but updating a database.

6. Remote data access

Online shopping has become the fad. Apps are getting rolling out. Everything is getting online. Data has been accessed remotely.

Simple data access queries for Database Management System provides data access easy and simple. With a simple plugin or command, data can be accessed by online websites or apps.

7. Client Supportive

Users or clients can embed database queries regardless of whatever programming languages they are using.

Suppose client want to provide online services through the website as well as mobile application. The database queries do not depend on the computer programming language. So a single database can be used for both the platforms.

8. Database management tools

There are lots of database management tools are available. It is lagging in earlier file system data management.

  • Database backup is important. It ensures the availability of a stable database in case if data gets corrupted.
  • Data replication is required for faster availability of database in the various regional areas.
  • Suppose there are large numbers of the user accessing data. Load balancing reduces the load on a particular database by sharing a load among all the replicated databases.
  • There is a need to prevent unwanted data access. So database monitoring and security have become the biggest concern.

9. Scalability

Last but not the least one of the advantages of database management system is database scalability.

To address every business requirement to store data, there is availability from small scale to large scale databases. Today almost every apps and online services are using a database management system.

These are advantages of database management system over the file system. For the same reason, the database management system has evolved. Today it is used everywhere than File System.

If you have any question or do you want to suggest any point, use the comment section below to write.

databaseDBMS
Aniruddha Chaudhari
I am complete Python Nut, love Linux and vim as an editor. I hold a Master of Computer Science from NIT Trichy. I dabble in C/C++, Java too. I keep sharing my coding knowledge and my own experience on CSEstack.org portal.

Your name can also be listed here. Got a tip? Submit it here to become an CSEstack author.

Comments

  • Reply
    Pavan Dehadre
    April 14, 2016 at 12:35 am

    Well written and easy to understand difference

    • Reply
      Aniruddha Chaudhari
      June 1, 2017 at 3:48 am

      Thanks Pavan!

  • Reply
    Pranita Venki
    April 16, 2016 at 9:41 pm

    Nice post.

    • Reply
      Aniruddha Chaudhari
      June 1, 2017 at 3:49 am

      Glad you like it.

  • Reply
    Shena Tambe
    April 19, 2016 at 2:53 pm

    Good stuff, Thanks for sharing

    • Reply
      Aniruddha Chaudhari
      June 1, 2017 at 3:51 am

      Thanks for your positives vibes.

  • Reply
    Samuals Staphen
    April 29, 2016 at 9:28 pm

    Thanks for elaborating this topic. Good difference and some clear points to understand. Well done!

    • Reply
      Aniruddha Chaudhari
      June 1, 2017 at 3:50 am

      Hey Samuals,

      You are welcome.

  • Reply
    Oluwa Malwiy
    September 25, 2017 at 2:52 pm

    Well done sir may ALMIGHTY GOD CONTINUE TOO STRENGTH YOU AND GIVE YOU MORE WISDOM, KNOWLEDGE, AND UNDERSTANDING. AMEN.

    • Reply
      Aniruddha Chaudhari
      February 3, 2018 at 11:00 am

      This means a lot to me. Thanks for all your best wishes, Oluwa.

  • Reply
    Palab
    August 3, 2018 at 12:44 am

    Simple to understand. thanks

    • Reply
      Aniruddha Chaudhari
      August 3, 2018 at 9:27 am

      Thanks, Palab. I am glad knowing as it adds value for your better understanding.

  • Reply
    Thabisi Mothupi
    November 14, 2018 at 9:45 am

    Very clear, um going to write computer test today, and if this topic may appear I am going to master it. Thank you sir

    • Reply
      Aniruddha Chaudhari
      November 15, 2018 at 8:54 am

      That’s really great, Thabisi. Best wishes for your test!

  • Reply
    Raybald T Matsika
    November 6, 2019 at 5:31 pm

    Great elaboration indeed

    • Reply
      Aniruddha Chaudhari
      November 7, 2019 at 6:39 pm

      Thanks, Raybald!

Leave a Reply Cancel reply

Database Management System

  • DBMS- Introduction
  • DBMS- Advantages over File System
  • DBMS- Types of Database Keys
  • DBMS- ACID Properties 
  • DBMS- Read-Write Conflicts
  • DBMS- CHAR vs VARCHAR
  • DBMS- SQL vs NoSQL
  • DBMS- MySQL vs MongoDB
  • DBMS- MongoDB CRUD Operations
  • Why BigData? Growth Fact

SQL Programming

  • SQL- Complete Tutorial
  • SQL- Basic Concepts
  • SQL- SELECT Commands
  • SQL- JOIN Clause
  • SQL- Interview Questions

Programming Tutorials

C/C++ Programming

Python Programming

Java Programming

© 2022 – CSEstack.org. All Rights Reserved.

  • Home
  • Subscribe
  • Contribute Us
    • Share Your Interview Experience
  • Contact Us
  • About
    • About CSEstack
    • Campus Ambassador
  • Forum & Discus
  • Tools for Geek
  • LeaderBoard