how to call a stored procedure with no parameters into another procedure

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vishnu27
    New Member
    • Oct 2014
    • 2

    #1

    how to call a stored procedure with no parameters into another procedure

    how to call a stored procedure with no parameters into another procedure.
  • Anas Mosaad
    New Member
    • Jan 2013
    • 185

    #2
    If you are using SQL PL use the call statement. Here's a pseudo code example

    Code:
    create or replace procedure my_parent_proc ...
    ...
       call child_proce(params);
    ...

    Comment

    Working...