How to create an oracle database manually?
No Answer is Posted For this Question
Be the First to Post Answer
i must get table name, constraint type, constrain name with using concads "||" and it must be in string type, then with join processes i need code please help immidiately
How data locks are respected in oracle?
What is an oracle transaction?
What is an anonymous block?
What are the differences between a sys and system user and what are the extra privileges available to the sys user?
Iam learning oracle developer 2000.. can anyone give me then tutorials sites or PDF related to developer 2000 please send me the details @ mak2786@gmail.com thanks Arun
i have procedure p1.and also i declare the same procedure in a package. whice one is efficient package procedure or procedure?
how many outer joins are used in a single sql query? is there any limitations for using of outer joins?
2 Answers BOB Technologies, Cap Gemini, IBM,
i want department wise maxmum salary and empolyee name
Difference between open_form and call_form in oracle.
What are the differences between lov and list item?
> 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?