it is important that the compatibility value of the DB is set to 130 (SQL Server 2016) otherwise some functions will not be available (STRING_SPLIT):

Example for check:

select compatibility_level from sys.databases where name ='rickenbach_av'

Example for set:

ALTER DATABASE [rickenbach_av] SET COMPATIBILITY_LEVEL = 130