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

how will u find statistics of a database objects?

2 Answers   iFlex,


What is the execution plan in sql?

0 Answers  


What is a constraint?

0 Answers  


Is primary key clustered or nonclustered?

0 Answers  


What is mutating table?

11 Answers   Saama Tech,






What is relationship? How many types of relationship are there?

0 Answers  


what is inline command?

2 Answers  


Explain the difference between drop and truncate commands in sql?

0 Answers  


what is the difference between where clause and having clause? : Sql dba

0 Answers  


How delete a row in sql?

0 Answers  


What is the difference between partitioning and sharding?

0 Answers  


What is sql deadlock?

0 Answers  


Categories