Requiring Technical Debt Payments
Steve found someone using an interesting approach to get developers to address some technical debt.
2025-09-08
143 reads
Steve found someone using an interesting approach to get developers to address some technical debt.
2025-09-08
143 reads
2025-09-06
130 reads
We have some requirements that we meet a particular setting or value, but often we have guidelines and recommendations. Do you know the difference?
2025-09-05
77 reads
Many of the GenAI services are using the free model of the past, where they use your data in ways you might not expect. Now, a court is ensuring OpenAI keeps your chat data around.
2025-09-03
93 reads
This Friday Steve Jones wonders about the upper limits for what you may learn in a year.
2025-09-01 (first published: 2016-04-08)
253 reads
Steve has a few thoughts on the lack of data sovereignty in the cloud, with an outlook that isn't very positive.
2025-08-29
95 reads
2025-08-27
184 reads
2025-08-25 (first published: 2025-08-11)
156 reads
I just got back from the Redgate Summit events in New York City, where I had the chance to present, swap stories, and nerd out with a lot of brilliant data folks. I came home energized… and then promptly slept for 14 hours on Thursday. That’s the best kind of exhaustion in my book. The […]
2025-08-23
50 reads
This Friday Steve asks about what you're looking forward to in SQL Server 2025, if anything.
2025-08-22
87 reads
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...
By Steve Jones
Last week I asked you to write about SQL Server 2025 and what things...
Whatsapp..+12369523025.. Whatsapp..+12369523025.. Email..json9211@gmail.com Email..json9211@gmail.com puppies for sale golden retriever puppies for sale dachshund...
Hi everyone, I’m working with some old SSIS 2005 packages, and I’m trying to...
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