What is the difference between RDBMS and DBMS?
Answer Posted / vishal sharma
#1 A DBMS has to be persistent, that is it should be
accessible when the program created the data ceases to
exist or even the application that created the data
restarted. A DBMS also has to provide some uniform methods
independent of a specific application for accessing the
information that is stored.
RDBMS is a Relational Data Base Management System
Relational DBMS. This adds the additional condition that
the system supports a tabular structure for the data, with
enforced relationships between the tables. This excludes
the databases that don't support a tabular structure or
don't enforce relationships between tables.
#2 DBMS does not impose any constraints or security with
regard to data manipulation it is user or the programmer
responsibility to ensure the ACID PROPERTY of the database
whereas the rdbms is more with this regard bcz rdbms difine
the integrity constraint for the purpose of holding ACID
PROPERTY.
#3 DBMS are for smaller organizations with small amount of
data, where security of the data is not of major concern
and RDBMS are designed to take care of large amounts of
data and also the security of this data.
| Is This Answer Correct ? | 81 Yes | 23 No |
Post New Answer View All Answers
What is cursor explain with example?
i have a column which may contain this kind of value: 123*67_80,12*8889_5,34*8_874 ,12*7_7 (can contain space before a comma, and this string length can be anything) now i want to split this value into two column like: column1: 123*67,12*8889,34*8,12*7 column2: 80,5,874,7 use function for this
What are the commands used in sql?
Does pdo prevent sql injection?
How do you truncate?
what is top in tsql? : Transact sql
what is single byte over head in oracle..?
When you have to use a default "rollback to" savepoint of plvlog?
What is the difference between truncate and drop statements?
What is a pl/sql block?
How to Execute a Package in PL/SQL.?
what is a composite key ? : Sql dba
What are triggers and its uses?
Is it possible to create the following trigger: before or after update trigger for each row?
Is it possible to sort a column using a column alias?