Breaking Things Apart
Microsoft is unbundling their new hypervisor from Windows. Could this happen with SQL Server?
2007-12-05
41 reads
Microsoft is unbundling their new hypervisor from Windows. Could this happen with SQL Server?
2007-12-05
41 reads
A few notes and comments on the database news from the previous week.
2007-12-03
18 reads
Volunteers are important to ensuring the success of so many organizations. IT-based organizations, such as user groups, are no different. Steve Jones leads you through a few of the stages of being a volunteer and hopes more of you will participate in your local area.
2007-11-29
55 reads
2007-11-28
80 reads
2007-11-23
35 reads
2007-11-22
39 reads
If you are accepting a DBA position, does it make sense to work as a contractor or permanent employee?
2007-11-21
231 reads
It's the time of year where employment benefits renew for many US employees. Steve Jones talks about how much your company should care about your health.
2007-11-19
65 reads
A few comments on the news of the past week: SQL Server 2008 CPT5, a 1.6SSD Array, Non-Compete agreements and more.
2007-11-19
19 reads
2007-11-15
104 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