|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| 11/04/2009 at 07:13PM PST, ID: 24873375 | Points: 500 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: |
function A return varchar2 is
v_RET varchar2(100)
begin
v_RET := fcn_B('test'); -- insert a record to B table
v_RET := fcn_C('test'); -- insert a record to C
v_RET := fcn_D('all'); -- insert a record to D
return v_RET;
exception when others then rollback;
end;
|
Advertisement