Ransomware vs. AI
Microsoft is using AI to try and protect against ransomware, which is probably a good use of the technology.
2024-02-07
158 reads
Microsoft is using AI to try and protect against ransomware, which is probably a good use of the technology.
2024-02-07
158 reads
In this script we will leverage the capabilities of Amazon Bedrock's Generative AI service to author SQL statements.
2024-02-03
617 reads
This article covers the basics of how different AI tools can be used to write SQL.
2024-02-09 (first published: 2024-01-19)
8,438 reads
Generative AI is everywhere, but especially in software development. Is it helping us? Steve has a few thoughts.
2024-01-06
109 reads
2023-12-29
439 reads
An OReilly Radar report on AI has some interesting data to Steve. Read what he thinks about the state of this technology in 2023.
2023-12-20
178 reads
This article examines how GitHub Copilot might be used when working with T-SQL Code.
2023-12-05
7,459 reads
Someone generated a fake speaker profile for their conference, which Steve finds disturbing.
2023-12-02
529 reads
With new vehicles becoming more and more computerized and controlled, is data privacy an issue?
2023-11-29
179 reads
Today Steve discusses an aspect of AI that many people are concerned about: data security. Read more and think about how this might affect your organization.
2023-11-27
249 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...
United Airlines San Francisco Airport Terminal offers a seamless and efficient travel experience, combining...
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...
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