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 normalization ?
9 Answers BirlaSoft, CTS, HCL,
if we give update table_name set column_name= default. what will happen? its given in pl sql block.what will hapen?
Is pl sql different from sql?
What is the use of sqldataadapter?
what is Difference between Having and Where clause?
I need to write a simple query,which one is better select statement or stored procedure?and why?
Does mysql support pl sql?
Difference between a query and strored procedure?
What are triggers in sql?
Can we use join in subquery?
Difference between aggregate function and analytical function?
how do you know if your mysql server is alive? : Sql dba