2025-11-17
2,898 reads
2025-11-17
2,898 reads
This article looks at using the FP-Growth algorithm from Python to mine data in SQL Server.
2025-09-08
2,621 reads
Introduction ChatGPT includes custom GPTs. You can create your own custom GPT. In this article, we will demonstrate how to create a custom GPT expert in SQL Server. Requirements To create your own GPT, you need to use the paid version of ChatGPT. First, go to ChatGPT. Secondly, if you don’t have the paid version, […]
2025-09-02 (first published: 2025-08-11)
4,488 reads
2025-07-28
10,960 reads
Learn how to get started running R scripts in R/Studio for data analysis.
2025-06-30
1,869 reads
See how ChatGPT can get data from images and conduct analysis on the data.
2025-06-16
2,131 reads
Learn how you can use Power BI to forecase the future trends of data.
2025-05-26 (first published: 2023-02-27)
50,909 reads
See how ChatGPT can be used to analyze a dataset, produce charts, and train a model.
2025-05-12
364 reads
2025-04-28
460 reads
Learn how the DeepSeek GenAI LLM works and see how it produces SQL code.
2025-03-31
3,544 reads
By Brian Kelley
Tech conferences aren't just for networking and learning how to address a problem you're...
By DataOnWheels
When I created the website on WordPress, I was expecting all the features I...
By Steve Jones
I wrote a piece on the new SUBSTRING in SQL Server 2025 and got...
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