Why cursor variables are easier to use than cursors?
No Answer is Posted For this Question
Be the First to Post Answer
Is postgres faster than oracle?
What different of iner joint & outer joint with example
What are the components of physical database structure in the Oracle database?
How to delete a user account in oracle?
What is a trigger and what are its types?
What is Reduced List of Values?
Can a formula column be obtained through a select statement ?
What is Public Database Link ?
Can a field be used in a report without it appearing in any data group ?
if you ctreate table identity
> 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?
how to use sequence and what use of sequence cache