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 user in sql?

0 Answers  


Explain the types of joins in sql?

0 Answers  


While inserting/updating million of records into a database table, how do I came to know how many records has been inserted or updated successfully so far?

2 Answers   HSBC,


Does pl sql work in mysql?

0 Answers  


What is application trigger?

0 Answers  






what is an alias command? : Sql dba

0 Answers  


What is a trigger word?

0 Answers  


What is Difference Between delete and Truncate?

9 Answers  


How do I start sql from command line?

0 Answers  


Can delete statement be rollbacked?

0 Answers  


When should I use nosql database?

0 Answers  


Can we use insert statement in function?

0 Answers  


Categories