Thursday, August 13, 2020

Difference between File System and DBMS

Prerequisite – DBMS over File system


A File Management system is a DBMS that allows acces to single files or tables at a time. In a File System, data is directly stored in set of files. It contains flat files that have no relation to other files (when only one table is stored in single file, then this file is known as flat file).

1. File System :


File system is basically a way of arranging the files in a storage medium like hard disk. File system organizes the files and helps in retrieval of files when they are required. File systems consists of different files which are grouped into directories. The directories further contain other folders and files. File system performs basic operations like management, file naming, giving access rules etc.

Example:

NTFS(New Technology File System), EXT(Extended File System).

Database File System, DBMS, Oracle Database Certification, Database Learning

2. DBMS(Database Management System) :


Database Management System is basically a software that manages the collection of related data. It is used for storing data and retrieving the data effectively when it is needed. It also provides proper security measures for protecting the data from unauthorized access. In Database Management System the data can be fetched by SQL queries and relational algebra. It also provides mechanisms for data recovery and data backup.

Example:

Oracle, MySQL, MS SQL server.

Database File System, DBMS, Oracle Database Certification, Database Learning

Difference between File System and DBMS :


FILE SYSTEM DBMS 
File system is a software that manages ad organizes the files in a storage medium within a computer. 
DBMS is a software for managing the database.
Redundant data can be present in a file system. 
In DBMS there is no redundant data. 
It doesn’t provide backup and recovery of data if it is lost. 
It provides backup and recovery of data even if it is lost. 
There is no efficient query processing in file system. 
Efficient query processing is there in DBMS. 
There is less data consistency in file system. 
There is more data consistency because of the process of normalization. 
It is less complex as compared to DBMS. 
It has more complexity in handling as compared to file system. 
File systems provide less security in comparison to DBMS. 
DBMS has more security mechanisms as compared to file system. 
It is less expensive than DBMS. 
It has a comparatively higher cost than a file system. 

Related Posts

0 comments:

Post a Comment