Stored Procedures [dbo].[GetAllConfigurationInfo]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Permissions
TypeActionOwning Principal
GrantExecuteRSExecRole
SQL Script
CREATE PROCEDURE [dbo].[GetAllConfigurationInfo]
AS
SELECT [Name], [Value]
FROM [ConfigurationInfo]

GO
GRANT EXECUTE ON  [dbo].[GetAllConfigurationInfo] TO [RSExecRole]
GO
Uses