In Exception handling if we are using the when others first then what happens . whether it will show the compiler error
HCL,
2 12459> 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?
1983Hi how Can I Add A Foreign key that references a table that has composit primary key ? example i had costumer table that has C_Id and SSN Both as PK and another table has C_Id that must refernece C_Id in Customers i done the usual way and got oracle error message about uniqeness any ideas plz
2 4330We are using Oracle apps with XML publisher.In that,we are facing some problems while giving a Footer in RTF Template.While giving a footer in RTF Template it is Visible in all the pages,but after the PDF is getiing generated,the Footer are Visible on alternate pages only (like on first page ,third page) and so on. Please provide the Solution for getting the Footer on all the pages.
5289Post New Oracle General Questions
How to pass parameters to procedures?
How to create a table index?
What happens if you lost a data file?
How to count duplicated values in a column in oracle?
What is the max number of columns in an oracle table?
What are the general rules on data consistency?
How would you configure your networking files to connect to a database by the name of DSS which resides in domain icallinc.com?
How do I escape a reserved word in oracle?
how the indexes are stored in the Oracle Database?
Hi Can any one tell me what are the API's used in requisition import.
How do I decide when to use right joins/left joins or inner joins or how to determine which table is on which side?
Give the constructs of a package, function or a procedure.
What are the types of partitions in oracle?
how to handle exceptions in post production
Can you assign multiple query result rows to a variable?