How packaged procedures and functions are called from the
following?

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the process of copying data from table a to table b?

597


what is the difference between nested subquery and correlated subquery?

549


What do you mean by field in sql?

536


Is drop table faster than truncate?

549


What are records give examples?

565






What is user defined functions?

579


Does user triggers have entry for trigger with compilation errors?

595


Is progress software supports to ( pl/sql )?

529


How to check if a column is nullable before setting to nullable?

582


What is rename command in sql?

466


How do I add a primary key to a table?

539


How is pl sql different from sql?

546


How do I trace sql profiler?

491


What is a procedure in pl sql?

544


What is difference between nchar and nvarchar?

540