| jayesh |
Posted: May 07, 2008 02:51:53 PM |
Total Post: 58
Joined: Jan, 2008
|
can we call procedure in function.
thanx in advance. |
|
|
http://sharear.blogspot.com |
| Posted: May 07, 2008 11:33:56 PM | |
|
Total Post: 48
Joined: Apr, 2008
|
|
|
|
|
Murtuja |
| Posted: May 08, 2008 02:44:03 AM | |
|
Total Post: 588
Joined: Jan, 2006
|
Hi,
http://www.oracle-training.cc/t_easyoracle_pl_sql_calling_procedures.htm
HTH
|
|
|
|
|
dbavinod |
| Posted: May 12, 2008 08:23:48 AM | |
|
Total Post: 81
Joined: Sep, 2006
|
CREATE OR REPLACE FUNCTION "TC"."TEST_FUNC" (I in number)
return Types.cursorType
as
My _Cur Types.cursorType;
Begin
Open My _Cur for Select * From MyFile where MyFile _sysid >= I;
Return My _Cur;
End;
|
|
|
|
|
| Time Zone: EDT |
Send this thread to your friend |