If you're trying to get the site and the inform columns in one go, then this:CREATE PROCEDURE GetFP @name varchar(50), @site varchar(500) Output,@Inform varchar(500) OUTPUT AS Select @site = Site, @Inform = Inform from FPTable where Name = @nameRETURN
should work. Alternatively, (not recommended!), you could avoid output parameters by returning the data from the stored procedure into a recordset.Sarah Berger MCSDEdited by - simondeutsch on 06/25/2003 21:25:48