/* * Description: Gets the value of the GlobalSystemOption that has the specified name. **/ createprocedure[dbo].[GetGlobalSystemOptionValue] @inOptionNamevarchar(128) as setnocounton
select [Value] fromGlobalSystemOption where[Name]=@inOptionName GO GRANTEXECUTEON[dbo].[GetGlobalSystemOptionValue]TO[MssExec] GO