USE [DBSessionState] GO /****** Object: StoredProcedure [dbo].[TempRemoveStateItem] Script Date: 09/22/2008 13:12:57 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER OFF GO ALTER PROCEDURE [dbo].[TempRemoveStateItem] @id tSessionId, @lockCookie int AS DELETE [DBSessionState].dbo.ASPStateTempSessions WHERE SessionId = @id AND LockCookie = @lockCookie RETURN 0