DBMS vs. RDBMS
Answers were Sorted based on User's Feedback
Answer / vamsikrishna.ch
• Relationship among tables is maintained in a RDBMS whereas
this not the case DBMS as it is used to manage the database.
• DBMS accepts the ‘flat file’ data that means there is no
relation among different data whereas RDBMS does not accepts
this type of design.
• DBMS is used for simpler business applications whereas
RDBMS is used for more complex applications.
• Although the foreign key concept is supported by both DBMS
and RDBMS but its only RDBMS that enforces the rules.
• RDBMS solution is required by large sets of data whereas
small sets of data can be managed by DBMS.
| Is This Answer Correct ? | 17 Yes | 0 No |
10. Display the client number, order date and shipping date for all orders where the shipping date is between three and six months after the order date.
What is meant by recursive hints in oracle?
23. Display the client name for all clients who have placed an order where any order line has more than 3 items. Do not use a table join anywhere in your query.
What is Hash Index?
How to set a transaction to be read only in oracle?
How would you change old and new values in an insert, delete and update triggers?
How to create an initialization parameter file?
what is difference between table and view? where to use views? thanks in advance!
Please help me how to write a Query to change the primary key constraint from 1 attribute to another attribute in a table
What is a server parameter file in oracle?
What is backup in Oracle?
how table is defined in plsql table? how can i select column from plsql table? can i use select * from plsql table type?