2
Reply

how can we call the one store procedure with in the anoyher store procedure

Divya Parashar

Divya Parashar

17y
7.4k
0
Reply

    An Easy example: CREATE PROCEDURE prcCallprc ( Exec prcCalledPrc ) Go EXEC prcCallprc

    'This stored procedure is called by a business component or webpage 
    'passing into two parameters, executes sp_ChildStoredProc and passes on value. 
    '
    The @Id OUTPUT returns the value.

    CREATE PROCEDURE sp_ParentStoredProc
    (
    @
    col1 varchar(20)
    @
    ValuePassed varchar(50),
    )
    AS

    declare @
    Id int
    EXEC sp_ReturnValue 
    @ValuePassed, @Id OUTPUT

    INSERT INTO SomeTable
    (col1col2)
    VALUES
    (@col1, @Id)
    RETURN
    GO