What are oracle functions?
No Answer is Posted For this Question
Be the First to Post Answer
What does ROLLBACK do ?
Hi Masters, in Oracle Applications 11i, we hace 2 functions using the same form, i need to create 1 personalization, but that code must afect only one function.... how can i do that?
> 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?
Two triggers one is before insert and other is after insert are firing on a table.If 10 times you insert in a table.Then how many times before trigger and how many types after trigger will fire in pl/sql.
what is mean by prmary key and foreign key and how can we diffrentiate that? Please answer me. Advance thanks.
What is raw datatype?
How are the index updates?
What are the different editions of oracle?
What is an Oracle index?
Explain what are clusters?
what is analyze command ? what kind of statistics does it generate?
What happens to the current transaction if the session is ended?