December 2017 - OnlineTutorialHub

Search This Blog

Theme images by Storman. Powered by Blogger.

About Fast Edition

Pages

Services

Blog Archive

Tuesday 19 December 2017

Important Factors of RDBMS

- No comments

Introduction to RDBMS:-

  • RDBMS stands for Relational Database Management System.
  • RDBMS is based on Relational Model.
   RDBMS can be defined as Database Management System (DBMS) where all data visible to the user is organized strictly as tables.
  • Examples of RDBMS: SQL, Sybase, Oracle, Microsoft SQL Server, Ingress, DB2, MySQL, PostgreSQL.
RDBMS vs DBMS

Why RDBMS is better than DBMS ?


The main differences between DBMS and RDBMS are given below:


S.NO.DBMSRDBMS
1DBMS stands for Database Management System.RDBMS stands for Relational Database Management System.
2DBMS offers an organized way of storing, managing and retrieving information.RDBMS provides all features of DBMS with an added referential integrity concept.
3In DBMS, data is stored as a file.In RDBMS, data are stored in a tabular form.
4In DBMS, there is no relationship concept.RDBMS is used to build up the relationship concept between two database objects, i.e., tables
5In DBMS, Normalization is not available.In RDBMS, Normalization is available.
6DBMS supports single user only.RDBMS supports multiple users.
7DBMS treats data as files internally.RDBMS treats data as tables internally.
8In DBMS, there is no security of data.In RDBMS, there are multiple levels of security, at logging level, at the command level, at the object level.
9DBMS does not support client-server architecture.RDBMS support client-server architecture.
10DBMS does not support distributed architecture.RDBMS support distributed architecture.
11DBMS supports 3 rules of E.F.CODD out of 12 rules.RDBMS supports minimum 6 rules of E.F.CODD out of 12 rules.
12In DBMS, ACID (Atomicity, Consistency, Isolation, and Durability) properties of the database must be implemented by the user or the developer.In RDBMS, ACID (Atomicity, Consistency, Isolation, and Durability) properties of the database are defined in the integrity constraints.
13DBMS does not impose integrity constraints.RDBMS impose the integrity constraints.
14DBMS has to provide some uniform methods to access the stored information.RDBMS system supports a tabular structure of the data and a relationship between them to access the stored information.
15DBMS requires low software and hardware requirements.RDBMS requires high software and hardware requirements.
16Examples of DBMS: file systemsXML, etc.Example of RDBMS: MySQLPostgresSQL ServerOracle, etc.
Now, you can say that RDBMS is most secure and useful than DBMS.