From 1044cb98f71697d009cfdad99165ae0980ffb112 Mon Sep 17 00:00:00 2001 From: Umachandar Jayachandran Date: Tue, 25 Oct 2016 22:41:28 -0700 Subject: [PATCH] Fixed string value so predicates work on case-sensitive server too --- .../SSMS-Custom-Reports/R Services - Configuration.rdl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/features/r-services/SSMS-Custom-Reports/R Services - Configuration.rdl b/samples/features/r-services/SSMS-Custom-Reports/R Services - Configuration.rdl index 4c85ddbe..7dfa70ff 100644 --- a/samples/features/r-services/SSMS-Custom-Reports/R Services - Configuration.rdl +++ b/samples/features/r-services/SSMS-Custom-Reports/R Services - Configuration.rdl @@ -30,7 +30,7 @@ select CAST(SERVERPROPERTY('IsAdvancedAnalyticsInstalled') as int) as IsRService )))), 0) as ImpliedAuthenticationEnabled , coalesce((select cast(r.value_data as int) from sys.dm_server_registry as r - where r.registry_key like 'HKLM\Software\Microsoft\Microsoft SQL Server\%\SuperSocketNetLib\TCP' + where r.registry_key like 'HKLM\Software\Microsoft\Microsoft SQL Server\%\SuperSocketNetLib\Tcp' and r.value_name = 'Enabled'), -1) as IsTcpEnabled from sys.configurations where name = 'external scripts enabled';