Difference between DBMS and RDBMS...CODD's rules
Answer Posted / avi007
DBMS-Database management system.
1> consider as file says field,attributes,record and file.
2> table relationship mentained by programmaticaly.
3> high network trafic.
4> distributed datable not supported.
5> no security
RDBMS-Relational management system
1> says column, row and table.
2>table relationship mentained at the time of table
creations.
3>low network trafic.
4>distributed database supported.
5>login level security.
| Is This Answer Correct ? | 10 Yes | 3 No |
Post New Answer View All Answers
Table 1: col1 Timestamp ---------------- 01-mar-2012 11:12:46 Table 2: col2 Timestamp -------------------- 01-mar-2012 11:12:10 01-mar-2012 11:11:23 Write a query to display a row with table2 col2 value less than tabl1 col1 value. Maximum timestamp value previous to table1 col1 value. Display a result as: Col1 col2 ----- ----- 01-mar-2012 11:12:46 01-mar-2012 11:12:10
What is sql trigger example?
Explain the types of joins in sql?
How do I view a procedure in sql?
what is the difference between mysql_fetch_object and mysql_fetch_array? : Sql dba
What are the different types of database management systems?
How do I view tables in sql developer?
How can I change database name in sql?
how many triggers are allowed in mysql table? : Sql dba
What is execute immediate?
what is row? : Sql dba
How bulk collect improves performance?
What is the difference between partition and index?
What if we write return in procedure?
What is on delete restrict?