Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Variable in Dynamic SQL

    --I think this might solve your problem (you no longer need the @Out variable):

    Create Procedure RecCount (@Table as Varchar(20)) As

    Begin

           Declare @strSQL as varchar(100)

           Declare @Out as int

           Set @strSQL='Select...

Viewing post 1 (of 1 total)