Configure SQL Server 2017 on Linux with mssql-conf, the Linux way
The configuration of any system plays a vital role in its working efficiently. However, configuring a system needs not necessarily...
2017-12-13
786 reads
The configuration of any system plays a vital role in its working efficiently. However, configuring a system needs not necessarily...
2017-12-13
786 reads
What is a graph database?
A graph is composed of two elements: a NODE (vertices) and an EDGE (relationship). Each node...
2017-12-04
795 reads
As a continuation to my previous article, How to use Python in SQL Server 2017 to obtain advanced data analytics,...
2017-11-21
661 reads
Log shipping is a high-availability configuration that perhaps most of us are familiar with. It’s one of the oldest techniques wherein...
2017-11-13
344 reads
Today, Microsoft claims that Linux runs like a First-Class citizen on Azure, .NET Core has been open-sourced, and has been...
2017-11-02
615 reads
dotnetvibes
I have presented on Making Developers lives easier with SQL Server 2016 multiple times over the last couple of months,...
2017-10-23
353 reads
If we follow blogs and publications on the technological advancement with respect to SQL, we notice the increase in the...
2017-10-23
487 reads
Monitoring a SQL Server database is a critical component of database administration. Ninety percent of the organizations expect the number...
2017-10-17
906 reads
SQL Server on Linux boosts the database market for Microsoft. Support of PolyBase (a feature to work with Big Data...
2017-10-09
364 reads
In an era of remote storage and retrieval of data, including the cloud, data security plays a vital role, especially...
2017-10-02
469 reads
By Steve Jones
With the AI push being everywhere, Redgate is no exception. We’ve been getting requests,...
By Steve Jones
fawtle – n. a weird little flaw built into your partner that somehow only...
AWS recently added support for Post-Quantum Key Exchange for TLS in Application Load Balancer...
Comments posted to this topic are about the item Where Your Value Separates You...
Comments posted to this topic are about the item Fixing the Error
Comments posted to this topic are about the item T-SQL in SQL Server 2025:...
On SQL Server 2025, I have a database that has this collation: SQL_Latin1_General_CP1_CI_AS. I decide I want to run this code:
SELECT UNISTR('*3041*308A*304C*3068 and good night', '*') AS 'A Classic';
I get this error:Msg 9844, Level 16, State 4, Line 24 The char/varchar input type uses an unsupported collation. Only a UTF8 collation is supported with char/varchar input type in UNISTR function.What is the easiest way to fix this error? See possible answers