How packaged procedures and functions are called from the
following?
Answers were Sorted based on User's Feedback
Answer / rajesh
The package procedure and function are called by using
package name.function/procedure name....
Is This Answer Correct ? | 2 Yes | 0 No |
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 |
What is user in sql?
Explain the types of joins in sql?
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?
Does pl sql work in mysql?
What is application trigger?
what is an alias command? : Sql dba
What is a trigger word?
What is Difference Between delete and Truncate?
How do I start sql from command line?
Can delete statement be rollbacked?
When should I use nosql database?
Can we use insert statement in function?