The Selfish Case for Learning AI
Steve has a good reason to spend time working with and learning about AI technology.
2025-10-31
129 reads
Steve has a good reason to spend time working with and learning about AI technology.
2025-10-31
129 reads
Cloud costs are high and growing. Some orgs think they're out of control and are trying to limit spend. Some orgs are looking to leave the cloud. A lot of IT spend over the years has been seen as a cost center, with many executives trying to limit the growth or spend, even while they […]
2025-10-29
171 reads
DevOps includes a lot of practices, but no matter which technology that you use, the ideas are the same.
2025-10-27
109 reads
In today’s fast-paced landscape, where agile development and cloud-native platforms dominate, data modelling might seem like a relic of the past.
2025-10-25
214 reads
2025-10-24
93 reads
2025-10-22
126 reads
Open offices have an interesting side effect: less collaboration.
2025-10-20 (first published: 2018-08-27)
165 reads
Why do I love editorials, I can hear you asking. The answer is simple. It's all about opinions. I have opinions. Lots of them. Lots and lots of them. I'm flying home from Hong Kong after visiting a Redgate customer. They are doing amazing work.. It's so cool getting to see how people are solving […]
2025-10-18
49 reads
Learning is fundamental in technology. Steve has a few thoughts on adopting a new technology at work.
2025-10-17
112 reads
2025-10-15
100 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