any sql parameter of string type (varchar, nvarchar, etc) that is used to construct a dynamic query is still vulnerable
otherwise the parameter type conversion (e.g. to int, decimal, date, etc.) should eliminate any attempt to inject sql via the parameter
EDIT: an example, where parameter @p1 is intended to be a table name
create procedure dbo.uspBeAfraidBeVeryAfraid ( @p1 varchar(64) )
AS
SET NOCOUNT ON
declare @sql varchar(512)
set @sql = 'select * from ' + @p1
exec(@sql)
GO
if
If @p1 is selected from a drop-down list it is a potential sql-injection attack vector;
if
If @p1 is forumlated formulated programmatically w/out the ability of the user to intervene then it is not a potential sql-injection attack vector
