Answer Posted / b.jaganathan
rdbms means relational database management system.......it
tells about the relationship between the dataitems.......
the dbms means database managment system
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
> 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 are the execution control statements?
What is save point in oracle database?
How to create a stored program unit?
What is the difference between I and G in Oracle?
What happens in oracle commit?
Explain what are the characteristics of data files?
Her departmandaki isçilerden empno' su ikinci sirada olan isçilerin empno, deptno, hiredate, sira_no bigilerini döndüren sorguyu yaziniz?
Compare and contrast between sql and sql server and explain its various functions?
How to invoke the data pump export utility?
Write a trigger example in oracle?
How many types of cluster table in Oracle?
What are the different windows events activated at runtime ?
Can a formula column referred to columns in higher group ?
How to fetch the row which has the max value for a column?