On Nov 3, 9:37 pm, Vlad <vladimir.mcbad...@gmail.com> wrote:
> It is probably bad practice but is it technically possible to call a
> stored procedure from a function?
>
> TIA

If you mean can you call a stored procedure as a parameter to a
function then no. Each parameter must be something that either is a
value (for an IN parameter) or that can take on a value (for an IN or
IN OUT parameter) and obviously a procedure violates this condition.
You can certainly use a stored FUNCTION for an IN parameter though
since it does return a variable.

If this doesn't answer your question can you please give an example of
what you are trying to accomplish?

Rob
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Oracle PL/SQL" group.
To post to this group, send email to Oracle-PLSQL@googlegroups.com
To unsubscribe from this group, send email to
oracle-plsql-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/Oracle-PLSQL?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to