Inside my stored procedures, I always have a comment line to test my stored procedure:
/*
EXEC [schema].[uspNameOfSP]
*/
I want to simplify this a bit, so that I can copy paste it to other stored procedures without having to change the name everytime. I want to do something like this:
/*
EXEC @thisStoredProceduresName
*/
Is something like that possible?