Oracle Application Developer Interview Questions and Answers

Oracle Application Developer Questions and Answers:

1 :: Explain Can we give DML statements inside a function?

YES YOU CAN USE DML(SELECT) WITHIN User defined function(UDF). BUT KEEP IN MIND THAT UDF CAN ONLY RETURN ONE SINGLE VALUE. BUT YOU CANT USE DDL(CREATE/ALTER/DROP) WITHIN UDF. TO DO THAT YOU HAVE TO USE SP(Stored Procedure).

DML EXAMPLE:
CREATE OR REPLACE Function IncomeLevel
( name_in IN varchar2 )
RETURN varchar2
IS
monthly_value number(6);
ILevel varchar2(20);
cursor c1 is
select monthly_income
from employees
where name = name_in;
BEGIN
open c1;
fetch c1 into monthly_value;
close c1;
IF monthly_value <= 4000 THEN
ILevel := 'Low Income';
ELSIF monthly_value > 4000 and monthly_value <= 7000 THEN
ILevel := 'Avg Income';
ELSIF monthly_value > 7000 and monthly_value <= 15000 THEN
ILevel := 'Moderate Income';
ELSE
ILevel := 'High Income';
END IF;
RETURN ILevel;
END;
0/5 Rating (0 vote)
Is This Answer Correct?    0 Yes 0 No
Place Your Answer

4 :: What is oracle application certification?

Oracle application certification is an Oracle certification exam
5/5 Rating (1 vote)
Is This Answer Correct?    0 Yes 0 No
Place Your Answer

Rate This Category:
0/5 Rating (0 vote)
Place Your Question



Top: Oracle Application Developer Interview Questions and Answers
Oracle Application Developer Interview Questions and Answers

Top Frequently Asked Oracle Application Developer Question
Frequently Asked Oracle Application Developer Job Interview Question


Top Frequently opened Certifications Job Interview categories
Most popular Certifications Job Interview categories

Comments About Oracle Application Developer Interview Questions and Answers

Share your valuable opinions, ideas and suggestions about Oracle Application Developer Interview Questions and Answers
While placing your comment your email address is required but won't be published any where else; Personal information will be kept confidential; we do not sell or release our respective visitors private information.
  1. Webmaster 22nd of May 2012

    Webmaster Said

    Tell us what you feel about Oracle Application Developer Interview Questions and Answers
    All comments will be published after review. No login or registration is required to post a comment on Oracle Application Developer Interview Questions and Answers We offer and invite you to submit your valuable comment now; Please be respectful of others when commenting. Insulting others, self-promotional comments, website promotional comments, marketing stuff, SEO Techniques, SMS-style content and off-topic comments will not be approved at this information portal.
    So start sharing your thoughts regarding Oracle Application Developer Interview Questions and Answers
    Thank you.

Leave a Comment

Leave a Comment
  1.  Enter This Verification Code  Regenerate Verification Code  



Your reply will be added to the comment above (Below any other replies to this comment) -

Top Comments About: Oracle Application Developer Interview Questions and Answers
Comments on Oracle Application Developer Interview Questions and Answers

 
Top of Link batk to Oracle Application Developer Interview Questions and Answers
Link batk to Oracle Application Developer Interview Questions and Answers