Stored Procedures [dbo].[DELETE_UND_ERROR]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@error_id_1bigint8
Permissions
TypeActionOwning Principal
GrantExecuteuniadmin
GrantExecuteuniuser
SQL Script
/****** Object:  Stored Procedure dbo.DELETE_UND_ERROR    Script Date: 12/1/2005 11:49:12 PM ******/

/****** Object:  Stored Procedure DELETE_UND_ERROR    Script Date: 3/25/2005 2:24:50 PM ******/
CREATE PROCEDURE [DELETE_UND_ERROR]
    (@error_id_1     [bigint])

AS DELETE [srdb].[und_error]

WHERE
    ( [error_id]     = @error_id_1)
GO
GRANT EXECUTE ON  [dbo].[DELETE_UND_ERROR] TO [uniadmin]
GRANT EXECUTE ON  [dbo].[DELETE_UND_ERROR] TO [uniuser]
GO
Uses