How to create a table interactively?
No Answer is Posted For this Question
Be the First to Post Answer
difference between imlicit cursor and explicit cursor ?
Youre getting high busy buffer waits - how can you find whats causing it?
how to produce numbers from 1 to 10 using dual table
What is a Redo Log ?
> 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 a collation and state the different types of collation sensitivity?
Explain the use of rows option in exp command.
how to get the second max val for every group in a table
What is a trace file and how is it created in oracle?
What is cursor
what is main def between plsql/table and array?
Explain oracle instance.