Skip to content

Commit 62e416b

Browse files
authored
Issue 35805: MS SQL Group Concat Install function fails on AWS RDS Instances as install script tries to perform operations that are not allowed in AWS RDS Service
1 parent c8d0617 commit 62e416b

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

LDK/resources/schemas/dbscripts/sqlserver/Naturalize_install_1.0.1.sql

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,7 @@
99
SET NOCOUNT ON ;
1010
GO
1111

12-
-------------------------------------------------------------------------------------------------------------------------------
13-
-- Turn advanced options on
14-
EXEC sys.sp_configure @configname = 'show advanced options', @configvalue = 1 ;
15-
GO
16-
RECONFIGURE WITH OVERRIDE ;
17-
GO
18-
-- Enable CLR
19-
EXEC sys.sp_configure @configname = 'clr enabled', @configvalue = 1 ;
20-
GO
21-
RECONFIGURE WITH OVERRIDE ;
22-
GO
23-
12+
@@ENABLE_CLR_STATEMENTS@@
2413
-- Add trusted assembly if we are running on SQLServer 2017
2514
IF OBJECT_ID(N'sys.trusted_assemblies', N'V') IS NOT NULL
2615
BEGIN
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Naturalize_install_1.0.1.sql
2+
Naturalize_uninstall.sql

0 commit comments

Comments
 (0)