Can we store images in oracle database?
No Answer is Posted For this Question
Be the First to Post Answer
Query to retrieve record for a many to many relationship ?
i wrote a pl/sql procedure. it must run every sunday 4.40 How can i schedule it with the help of dbms_jobs (or another other procedure with out creating bat file,exe file)
What is the usage of control file in oracle?
What is oracle open database communication (odbc)?
What is Water Mark in Oracle?
How to retrieve 5th highest sal from emp table?
How does the on-delete-cascade statement work?
What is flashback in Oracle?
Does rowid change in oracle?
How to insert a new row into a table in oracle?
What is index-organized table in Oracle?
> 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?