What is the difference between RDBMS and DBMS?
Answer Posted / abdul waheed
its very simple,,,,there are three main differences b/w
RDBMS & DBMS
1- There is a condition in RDBMS that data should be stored
in tabular(only in Rows and column) Form/ In DBMS data can
be stored in any format
2- In RDBMS all the tables and the content of the tables
keeps relationship...thats y it called Relation DBMS///// in
DBMS column or table dont have any relationship
3- RDBMS can be accessed by multiple users at a same
time////////// DBMS can be accessed only by single user.
Oracle,SQl,DB2,and My Sql all these databases use RDBMS
| Is This Answer Correct ? | 97 Yes | 11 No |
Post New Answer View All Answers
name 3 ways to get an accurate count of the number of records in a table? : Sql dba
Why use stored procedures?
what is an execution plan? When would you use it? How would you view the execution plan? : Sql dba
what is a relationship and what are they? : Sql dba
What are different types of tables in sql?
Which table is left in left join?
What is a sql instance vs database?
Does pl/sql support create command?
What are the different types of database management systems?
how to delete duplicate rows from a join tables(I have three tables on that join) how do you know which join is need to be used? The select statement I have is: SELECT gc_skill_type.skill_type, gc_area_tec.area, gc_technology.technology, gc_technology.id_technology, gc_area_tec.id_area_tec FROM gc_skill_type, gc_area_tec, gc_technology WHERE gc_area_tec.id_skill_type (+) = gc_skill_type.id_skill_type AND gc_technology.id_area_tec (+) = gc_area_tec.id_area_tec order by gc_skill_type.skill_type asc, gc_area_tec.area asc, gc_technology.technology asc
What is a recursive stored procedure?
How do I save a sql query?
Differentiate between pl/sql and sql?
Does inner join return duplicate rows?
What does stand for in sql?