How packaged procedures and functions are called from the
following?

Answers were Sorted based on User's Feedback



How packaged procedures and functions are called from the following?..

Answer / rajesh

The package procedure and function are called by using
package name.function/procedure name....

Is This Answer Correct ?    2 Yes 0 No

How packaged procedures and functions are called from the following?..

Answer / madhavi

If A function returns only one value then u can call
that function from select statement like
select packagename.functionname(parameters) from dual,


But for procedure its not possible to call through select
statement u have to call through anonymous block.
declare
begin
packagename.procedurename(actual parameters);
end;
/

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

What is procedure and function?

0 Answers  


what are date and time data types in mysql? : Sql dba

0 Answers  


What does count (*) mean?

0 Answers  


Please let me know if UNION ALL and Natural Join does the same operation and are same...

7 Answers   iGate,


What are field types?

0 Answers  






What does := mean in pl sql?

0 Answers  


What is the most important ddl statements in sql are?

0 Answers  


What are character functions in sql?

0 Answers  


How to find the count of letter "L" in HELLO

7 Answers   HP,


difference between cursor and procedure in a package

3 Answers   PCS,


What is the syntax and use of the coalesce function?

0 Answers  


explain the difference between delete , truncate and drop commands? : Sql dba

0 Answers  


Categories