Hi
I have a problem setting this value. I'd like to concatinate 2 strings, but sometimes one of those 2 is empty. So I tried to set 'CONCAT_NULL_YIELDS_NULL' to False.
USE ADRES EXEC sp_dboption 'adres', 'CONCAT_NULL_YIELDS_NULL', 'False'
I used this function. SQL Server Enterprise Manager says 'Query has executed succesfully', but when I try my statements (so string1 + string2) it's not working!
In SQL Query Analyzer you can set a DB option, but it seems like that's not possible in the Enterprise manager...
I have a problem setting this value. I'd like to concatinate 2 strings, but sometimes one of those 2 is empty. So I tried to set 'CONCAT_NULL_YIELDS_NULL' to False.
USE ADRES EXEC sp_dboption 'adres', 'CONCAT_NULL_YIELDS_NULL', 'False'
I used this function. SQL Server Enterprise Manager says 'Query has executed succesfully', but when I try my statements (so string1 + string2) it's not working!
In SQL Query Analyzer you can set a DB option, but it seems like that's not possible in the Enterprise manager...