what is difference between DBMS and RDBMS?
Answers were Sorted based on User's Feedback
Answer / yadu
Main difference is-> In RDBMS data is spread accross
multiple tables and these tables are related to each other.
(Data is normalized).
Is This Answer Correct ? | 7 Yes | 2 No |
Answer / shalini singh
In RDBMS data is spread across multiple tables and these tables are related to each other. (Data is normalized). where as DBMS manipulates flat files only.
Is This Answer Correct ? | 3 Yes | 0 No |
Is oracle a relational database?
How do I find my oracle client driver version?
diff between DELETE and TRUNCATE?.
14 Answers HCL, Yalamanchili Software,
How can I convert single byte kana characters into multi byte kana characters and vice-versa.
Explain the statement?? ALTER TABLE TABLE_NAME MOVE; What it the use of above statement??
3. Adapt your query in (2) above so that only post codes with more than twenty orders are displayed.
What is a SNAPSHOT ?
Display the number value in Words?
> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?
What is Network Database link ?
What is the difference between the Oracle ODBC driver and a Microsoft ODBC (Open Database Connectivity) Driver?
What is the difference between translate and replace?