[dbo].[SetConfigurationInfo]
(local)
>
ReportServer
>
Stored Procedures
> dbo.SetConfigurationInfo
Properties
Parameters
Permissions
SQL Script
Uses
Properties
Property
Value
ANSI Nulls On
Quoted Identifier On
Parameters
Name
Data Type
Max Length (Bytes)
@Name
nvarchar(260)
520
@Value
ntext
16
Permissions
Type
Action
Owning Principal
Grant
Execute
RSExecRole
SQL Script
CREATE
PROCEDURE
[dbo]
.
[SetConfigurationInfo]
@Name
nvarchar
(
260
),
@Value
ntext
AS
DELETE
FROM
[ConfigurationInfo]
WHERE
[Name]
=
@Name
IF
@Value
is
not
null
BEGIN
INSERT
INTO
ConfigurationInfo
VALUES
(
newid
(),
@Name
,
@Value
)
END
GO
GRANT
EXECUTE
ON
[dbo]
.
[SetConfigurationInfo]
TO
[RSExecRole]
GO
Uses
[dbo].[ConfigurationInfo]
dbo