Apr 16 2011 09:23 AM 4615 2 What is the use of Parametric Cursor ? jayshree13 dinesh.smhdr Profile Answers by dinesh.smhdr Questions by dinesh.smhdr Sep 13th, 2011 "oracle8 declare cursor c_emp (cin_No NUMBER) is select count(*) from employee where id = cin_No; v_deptNo employee.id%type:=10; v_countEmp NUMBER; begi... Answer Question Select Best Answer Apr 16 2011 09:22 AM 12578 10 When would you use stored procedure or functions ? jayshree13 Explain the scenario of the best usage krishna Dec 17th, 2015 When there is return value then we use function else we use procedure and for DMLs also ptmich Profile Answers by ptmich Questions by ptmich May 28th, 2012 It is best to go for a function when a value needs to be computed but a stored procedure is useful when you need to execute business logic. Answer Question Select Best Answer
Apr 16 2011 09:23 AM 4615 2 What is the use of Parametric Cursor ? jayshree13 dinesh.smhdr Profile Answers by dinesh.smhdr Questions by dinesh.smhdr Sep 13th, 2011 "oracle8 declare cursor c_emp (cin_No NUMBER) is select count(*) from employee where id = cin_No; v_deptNo employee.id%type:=10; v_countEmp NUMBER; begi... Answer Question Select Best Answer
dinesh.smhdr Profile Answers by dinesh.smhdr Questions by dinesh.smhdr Sep 13th, 2011 "oracle8 declare cursor c_emp (cin_No NUMBER) is select count(*) from employee where id = cin_No; v_deptNo employee.id%type:=10; v_countEmp NUMBER; begi...
Apr 16 2011 09:22 AM 12578 10 When would you use stored procedure or functions ? jayshree13 Explain the scenario of the best usage krishna Dec 17th, 2015 When there is return value then we use function else we use procedure and for DMLs also ptmich Profile Answers by ptmich Questions by ptmich May 28th, 2012 It is best to go for a function when a value needs to be computed but a stored procedure is useful when you need to execute business logic. Answer Question Select Best Answer
krishna Dec 17th, 2015 When there is return value then we use function else we use procedure and for DMLs also
ptmich Profile Answers by ptmich Questions by ptmich May 28th, 2012 It is best to go for a function when a value needs to be computed but a stored procedure is useful when you need to execute business logic.