[dbo].[DeleteNotification]
(local)
>
ReportServer
>
Stored Procedures
> dbo.DeleteNotification
Properties
Parameters
Permissions
SQL Script
Uses
Properties
Property
Value
ANSI Nulls On
Quoted Identifier On
Parameters
Name
Data Type
Max Length (Bytes)
@ID
uniqueidentifier
16
Permissions
Type
Action
Owning Principal
Grant
Execute
RSExecRole
SQL Script
CREATE
PROCEDURE
[dbo]
.
[DeleteNotification]
@ID
uniqueidentifier
AS
delete
from
[Notifications]
where
[NotificationID]
=
@ID
GO
GRANT
EXECUTE
ON
[dbo]
.
[DeleteNotification]
TO
[RSExecRole]
GO
Uses
[dbo].[Notifications]
dbo