T-SQL: How Do I Create A "Private" Function Inside A Stored Procedure

Posted by RPM1984 on Stack Overflow See other posts from Stack Overflow or by RPM1984
Published on 2010-06-08T05:26:00Z Indexed on 2010/06/08 5:32 UTC
Read the original article Hit count: 256

Okay so im writing a SQL Server 2008 Stored Procedure (maintenance script).

In doing so, being a good boy i've done plenty of error handling, checking rowcounts, printing output messages, etc

But in doing this, ive found myself writing over and over again something like this:

SELECT @RowsAffected = @@ROWCOUNT
IF @RowsAffected > 0
BEGIN
   PRINT CAST(@RowsAffected, NVARCHAR(2)) + 'rows updated.'
END

Or debug messages like this:

PRINT 'User ' + CAST(@UserId AS NVARCHAR(5)) + ' modified successfully'

Is there a way i can create a kind of 'subroutine' inside the stored procedure (like a private method) that can accept something as a parameter (doesnt have to though) and do some logic?

I want to be able to do something like this:

CheckRowCounts

Or this:

PrintUserUpatedMessage(@UserId)

Which would then perform the above logic (check rowcount, print message, etc)

And yes obviously i can create a UDF, but then i would need to create/drop it etc as this logic is only required for the life of the execution of this stored procedure.

Getting sick and tired of writing the same code over and over again, and changing all the different areas ive used it when i get an error =)

Can anyone help?

© Stack Overflow or respective owner

Related posts about sql-server

Related posts about tsql