Execute SQL Task

  • im stuck trying to get this execute SQL task working,

    SQL Statemant = EXEC ISBUREAUOPEN

    Stored Proc

    IsBureauOpen

    @Open Bit OUTPUT

    how do i set the execute SQL task to get the output from the stored proc into a variable ?

  • declare @var bit

    exec @var = ISBUREAUOPEN

    select @var



    A.J.
    DBA with an attitude

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply