What is the difference between RDBMS and DBMS?
Answer Posted / ashish sharma
Difference between DBMS and RDBMS--
DBMS i.e. DataBase Management System is a collection of
Data in a file which is not organised and related in any
case..Its just a file in which resords has been inserted
for further uses and that caould be any format...As compare
to it RDBMS is a DBMS that is related and organised
collection of data..By organised we mean that it is in a
particular and in pre defined format and relational means
that each data is related to each other in some order.
RDBMS supports tables..A Table is a something which has
Rows and Columns.Table contains Field and Fields contains
Records.Row of Table is also called "TUPLES" sometimes and
columns are called Attributes..
RDBMS also supports relationship between 2 tables i.e.
PRIMARY and FOREIGN key relationship..
RDBMS also provide DML,DDL and DCL for entering data and
manipulating it at column and table level...
RDBMS also supports CHECK constraints before entering any
data in the table and it also provides validations like NOT
NULL and UNIQUENESS....
SQL has been written to support RDBMS and it dos not
support DBMS...
RDBMS supports multiple users to access the same data at
the same time but DBMS supports single user to allow
accessing the data at a particular point of time...
There is one more concept of Codd's Rules..Professor
E.F.Codd has given its 12 rules..Hence any DBMS that
supports these Codd's rules becomes an RDBMS..
RDBMS also supports Data Normailization while a DBMS not.
There is one for fact that no RDBMS supports and follows
all 12 Codd Rules...
DBMS does not supports Client/Server Architechture while
most of the RDBMS supports Client/Server Architechture...
DBMS does not support Distributed databases but most of the
RDBMS supports...
RDBMS examples-Oracle,My SQL,SQl Server,MS-Access,Sybase,
Ingrase etc.
DBMS examples-Visual Foxpro etc.
| Is This Answer Correct ? | 7 Yes | 8 No |
Post New Answer View All Answers
what is the difference between sql and t-sql? : Transact sql
What is the basic structure of an sql?
what is the difference between nested subquery and correlated subquery?
How to handle bulk data?
what is the difference between delete and truncate statement in sql? : Sql dba
Why is a trigger used?
What is sap sql anywhere?
1. is it possible to use the cursor atttibutes (%found ,% rowcount , %isopen , %notfound ) to our user defined cursor names ....... cursor cursor_name is select * from scott.emp if you use... cursor_name%found , %rowcount ,%isopen,%notfound...will it work... -------------------------- 2.what is the difference between the varray and index by table .. -------- 3. type type_name is table of number(8,3) index by binary_integer; identifier_name type_name; first , last , prior , next ,trim are the methods we can use it for the above type...simillary is there any way to apply for cursors... with thanks and regards..sarao...
what are the type of locks ? : Sql dba
- Types of triggers - View - Dcl - Procedures, packages, functions - Metasolve - Can use Dcl in triggers - package case study - Cursor and its types - triggers schedule - Wrap - Why we are using fetch and for in cursor. difference?
What is difference between sql and oracle?
What view means?
What is the use of sqlerrd 3?
what is the difference between mysql_fetch_array and mysql_fetch_object? : Sql dba
Why having clause is used in sql?