Interview Preparation mode beta
Funny Facebook Status Funny Facebook Status
Enter your email address

What is RDBMS?

Nice?Vote!
What is RDBMS?

RDBMS stands for Relational Database Management System. RDBMS is the basis for SQL, and for all modern database systems like MS SQL Server, IBM DB2, Oracle, MySQL, and Microsoft Access.

A Relational database management system (RDBMS) is a database management system (DBMS) that is based on the relational model as introduced by E. F. Codd.
asked 1 year ago in SQL Server Interview Questions and Answers by siva (10,720 points) edited 1 year ago by R

2 Answers

Nice?Vote!
RDBMS stands for Relational Database Management System. RDBMS data is structured in database tables, fields and records. Each RDBMS table consists of database table rows. Each database table row consists of one or more database table fields.

RDBMS store the data into collection of tables, which might be related by common fields (database table columns). RDBMS also provide relational operators to manipulate the data stored into the database tables. Most RDBMS use SQL as database query language.
The most popular RDBMS are MS SQL Server, DB2, Oracle and MySQL.

Advantages :
1. Uses OOPs concept
2. Highly secured
3. Multiple users can access which is not possible in DBMS
4. It is relational
5. Avoids data redundancy problems using NORMAL FORMS
6. It performs all DML operations which is not possible with ordinary DBMS
7. Supports data Independence
8. finally it supports DBMS concepts too.
answered 1 year ago by R (19,530 points) edited 1 year ago by R
Nice?Vote!
Relational Data Base Management Systems (RDBMS) are database management systems that maintain data records and indices in tables. Relationships may be created and maintained across and among the data and tables. In a relational database, relationships between data items are expressed by means of tables. Inter-dependencies among these tables are expressed by data values rather than by pointers. This allows a high degree of data independence. An RDBMS has the capability to recombine the data items from different files, providing powerful tools for data usage.
answered 1 year ago by R (19,530 points)

Related questions