Hi,I creating a stored procedure to first check if a value DOES NOT Exist, if so create an insert but on executing I'm not see a request for the parameters?SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOALTER procedure [dbo].[NewSystem]ASDeclare @ClassID int, @ASystem nvarchar(150), @ASubSystem nvarchar(150)If Not Exists (Select ClassID From tbl_Systems Where System = @ASystem and SubSystem = @ASubSystem)insert into tbl_systems (ClassID, System, ASubSystem) Values (@ClassID, @ASystem, @ASubSystem)