how many triggers we can create on a table
Answers were Sorted based on User's Feedback
What is the difference between sharding and replication?
What are the oracle built-in data types?
What is a deadlock in SQL? How can you prevent it?
how to make an oracle object
what is a cartition product?
What is different bet native dynamic sql and Dbms_Sql?
What is a oracle database?
Can cursor variables be stored in PL/SQL tables.If yes how. If not why?
what is the use of composite key constraint?
> 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?
When a form is invoked with call_form, Does oracle forms issues a save point ?
What is a shared pool?