How does oracle handle read consistency?
No Answer is Posted For this Question
Be the First to Post Answer
Can a formula column be obtained through a select statement ?
In Oracle 10g, "g" Stands for what?
What is redo log?
How can windows applications connect to oracle servers?
How to recover a dropped table in oracle?
how to find out second largest value in the table
> 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 create lov dynamically at runtime & attach to text field?
What is Virtual Private Database in Oracle?
how to we delete a row using varray
What happens if variable names collide with table/column names?
What is the difference between an Oracle Schema and an Oracle Instance?