please explain..
DB architecture ...
No Answer is Posted For this Question
Be the First to Post Answer
What are steps required to ENTER DATA INTO DWH?
How to define an anonymous procedure with variables?
What is a proxy class?
What is the difference between I and G in Oracle?
Maximum how many triggers can be updated in table ?
5 Answers Accenture, Cap Gemini,
when a grant option is encountered for a table EMP to a peer sitting beside you who has already having the table of that name (EMP), then what is the result?
What is hot backup and logical backup?
Explain oracle instance.
What are the major difference between truncate and delete?
Briefly explain what is literal? Give an example where it can be used?
> 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 is a deadlock in SQL? How can you prevent it?