I have a stored procedure SP1 which does some data validation and if there are any mismatcches it inserts a row in to audit table , the insertion is done by ising another SP2.
So it is something like
Create Proc SP1
As
Begin
IF(firstname is null)
Exec SP2
End
But i also want to count of how many rows are inserted into the audit table and pass it to a user variable in SSIS
can anyone help me with this problem.