How data quality improves artificial intelligence – Part 2
Jim Harris shares three more examples of how data ...
2019-05-22
Jim Harris shares three more examples of how data ...
2019-05-22
Industry group urges EU policymakers not to draw "red lines" around specific uses of AI.
2019-05-20
Many businesses are now turning towards the buzz of ‘artificial intelligence’ (AI) as they strive harder to put their specific needs...
2019-05-16
There is a lot of excitement about artificial intelligence (AI), and also a lot of fear. Let’s set aside the potential for robots to take over the world for...
2019-04-26
Anti-money laundering is an important issue for governments and banks alike. The fight to prevent terrorist financing and profiting from crime means that banks and other financial institutions are...
2019-04-12
Jim Harris shares examples of how and why AI applications are dependent on high-quality data.
The post How data quality improves artificial intelligence appeared first on SAS Blogs.
2019-04-10
Today's AI is technically "weak"—but it's complex and can have a great societal impact.
2019-04-09
Artificial intelligence (AI) is touching many parts of our lives and careers. Rama Anem discusses the impact of AI on software testing and how testers’ skills must adapt.
2018-04-11
2,961 reads
It is important to showcase how Artificial Intelligence is being used in various fields and industries with some facts
2018-03-13
441 reads
By Steve Jones
I wrote a piece on the new SUBSTRING in SQL Server 2025 and got...
By Steve Jones
If you aren’t watching the Ignite keynotes today, then you might have missed the...
Short version You want to get this running as fast as possible. Do these...
I changed my email address in Edit Profile page, but it has no effect...
Comments posted to this topic are about the item The case for "Understanding our...
Comments posted to this topic are about the item Specifying the Collation
I am dealing with issues on my SQL Server 2022 instance related to collation. I have an instance collation of Latin1_General_CS_AS_KS_WS, but a database collation of Latin1_General_CI_AS. I want to force a few queries to run with a specified collation by using code like this:
DECLARE @c VARCHAR(20) = 'Latin1_General_CI_AS'
SELECT p.PersonType,
p.Title,
p.LastName,
c.CustomerID,
c.AccountNumber
FROM Person.Person AS p
INNER JOIN Sales.Customer AS c
ON c.PersonID = p.BusinessEntityID
COLLATE @c
Will this solve my problem? See possible answers