what is the exact diiference between DBMS and RDBMS
Answer Posted / santhosh
DBMS: It has the capacity to develop the front end FORMS and REPORTS in the DBMS itself.
RDBMS: Front end has to be developed using some other tools like .NET, JAVA. Since it is purely server side software.
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
Explain cascading triggers.
What is the difference between formal parameters and actual parameters?
Whether any commands are used for months calculation? If so, what are they?
How to convert character types to numeric types?
Whats the benefit of dbms_stats over analyze?
How can we find out the current date and time in oracle?
How to define an anonymous procedure with variables?
> 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 sequence?
How to export your own schema?
What is a nvl function? How can it be used?
How to connect to the server with user account: sys?
What is the difference between $oracle_base and $oracle_home?
What are the common oracle dba tasks?
Explain the use of grant option in exp command.