Transact SQL MSSQL Tutorial

DECLARE @IntVal  int
SET     @IntVal = 21
EXEC ('usp_MyProc ' + STR (@IntVal))
GO