[dbo].[DELETE_UND_ERROR]
(local)
>
mdb
>
Stored Procedures
> dbo.DELETE_UND_ERROR
Properties
Parameters
Permissions
SQL Script
Uses
Properties
Property
Value
ANSI Nulls On
Quoted Identifier On
Parameters
Name
Data Type
Max Length (Bytes)
@error_id_1
bigint
8
Permissions
Type
Action
Owning Principal
Grant
Execute
uniadmin
Grant
Execute
uniuser
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
[dbo].[und_error]
dbo
[srdb].[und_error]