Viewing post 1 (of 1 total)
--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...
August 20, 2004 at 12:24 am
#519943